From: travisutk Date: Fri, 23 Dec 2011 14:15:57 +0000 (+0000) Subject: Fixed config.mk to accept a limited list of apps when defined. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=c5823f8b7ca8d31440a6a708b89a9c7354aa173e;ds=inline Fixed config.mk to accept a limited list of apps when defined. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1069 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/firmware/config.mk b/firmware/config.mk index 1461c25..4df6c11 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) +ifeq ($(config),undef) config += $(foreach app,$(AVAILABLE_APPS),$(if $(findstring $(CONFIG_$(app)),y yes t true Y YES T TRUE),$(app))) -#endif +endif