From 215ac639ff82a5064d3a24db005ddd49ec9e1429 Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Tue, 27 Mar 2012 01:22:51 +0200 Subject: [PATCH] Fix makefile conditions Change-Id: I7e36cec5e3dd86b3220a8a14561596aaa81fdefb --- tools/root.make | 6 +++--- 1 file 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 # dependencies and compile rules include $(TOOLSDIR)/tools.make -ifneq (,$(findstring checkwps,$(APP_TYPE))) - ifneq (,$(findstring database,$(APP_TYPE))) - ifneq (,$(findstring warble,$(APP_TYPE))) +ifeq (,$(findstring checkwps,$(APP_TYPE))) + ifeq (,$(findstring database,$(APP_TYPE))) + ifeq (,$(findstring warble,$(APP_TYPE))) include $(FIRMDIR)/firmware.make include $(ROOTDIR)/apps/bitmaps/bitmaps.make ifeq (,$(findstring bootloader,$(APPSDIR))) -- 2.11.4.GIT