summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2012-03-27 01:22:51 +0200
committerFrank Gevaerts <frank@gevaerts.be>2012-03-27 01:22:51 +0200
commit215ac639ff82a5064d3a24db005ddd49ec9e1429 (patch)
tree2f01a71ff015100bbff910221fe9e70282f3a339 /tools
parent83cb2e5daef2f13c8098cda3e6a9708a372e967c (diff)
downloadrockbox-215ac639ff82a5064d3a24db005ddd49ec9e1429.tar.gz
rockbox-215ac639ff82a5064d3a24db005ddd49ec9e1429.zip
Fix makefile conditions
Change-Id: I7e36cec5e3dd86b3220a8a14561596aaa81fdefb
Diffstat (limited to 'tools')
-rw-r--r--tools/root.make6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/root.make b/tools/root.make
index e42be044fc..4a1aaaf8d8 100644
--- a/tools/root.make
+++ b/tools/root.make
@@ -63,9 +63,9 @@ all: $(DEPFILE) build
63# dependencies and compile rules 63# dependencies and compile rules
64include $(TOOLSDIR)/tools.make 64include $(TOOLSDIR)/tools.make
65 65
66ifneq (,$(findstring checkwps,$(APP_TYPE))) 66ifeq (,$(findstring checkwps,$(APP_TYPE)))
67 ifneq (,$(findstring database,$(APP_TYPE))) 67 ifeq (,$(findstring database,$(APP_TYPE)))
68 ifneq (,$(findstring warble,$(APP_TYPE))) 68 ifeq (,$(findstring warble,$(APP_TYPE)))
69 include $(FIRMDIR)/firmware.make 69 include $(FIRMDIR)/firmware.make
70 include $(ROOTDIR)/apps/bitmaps/bitmaps.make 70 include $(ROOTDIR)/apps/bitmaps/bitmaps.make
71 ifeq (,$(findstring bootloader,$(APPSDIR))) 71 ifeq (,$(findstring bootloader,$(APPSDIR)))