From c2f96e2641f1cc8c2bc900c01432232c55568c72 Mon Sep 17 00:00:00 2001 From: dragorn Date: Mon, 5 Dec 2011 15:32:48 +0000 Subject: [PATCH] Don't ignore apps list in config line git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1068 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- firmware/config.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/firmware/config.mk b/firmware/config.mk index 2cf09bd..1461c25 100644 --- a/firmware/config.mk +++ b/firmware/config.mk @@ -111,6 +111,6 @@ CONFIG_ps2 ?= n CONFIG_slc2 ?= n #The CONFIG_foo vars are only interpreted if $(config) is unset. -ifeq ($(config),undef) -config := $(foreach app,$(AVAILABLE_APPS),$(if $(findstring $(CONFIG_$(app)),y yes t true Y YES T TRUE),$(app))) -endif +#ifeq ($(config),undef) +config += $(foreach app,$(AVAILABLE_APPS),$(if $(findstring $(CONFIG_$(app)),y yes t true Y YES T TRUE),$(app))) +#endif -- 2.20.1