From 9129fb715b69c0d2ffec2f963f57346bf89bc355 Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 15 Nov 2012 19:35:15 +0000 Subject: Fix a place that had a '\' but needed a '/' git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5359 42af7a65-404d-4744-a932-0658087f49c3 --- apps/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'apps/Makefile') diff --git a/apps/Makefile b/apps/Makefile index 77f2012ef..c172135ec 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -102,9 +102,15 @@ endif # Create the list of available applications (INSTALLED_APPS) +ifeq ($(CONFIG_WINDOWS_NATIVE),y) define ADD_BUILTIN -INSTALLED_APPS += $(if $(wildcard $1\Makefile),$1,) + INSTALLED_APPS += $(if $(wildcard $1\Makefile),$1,) endef +else +define ADD_BUILTIN + INSTALLED_APPS += $(if $(wildcard $1/Makefile),$1,) +endef +endif $(foreach BUILTIN, $(CONFIGURED_APPS), $(eval $(call ADD_BUILTIN,$(BUILTIN)))) -- cgit v1.2.3