summaryrefslogtreecommitdiff
path: root/apps/builtin/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-04 09:05:10 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-04 09:05:10 -0600
commit747a4d6bf5a7d9897010fcaf403010f956ff4c7c (patch)
treee44da7fdca95c8bca62671bcbb0be657c6697705 /apps/builtin/Makefile
parent51f0f249a131baae11c2d2d131cf0787cb0f9ee9 (diff)
downloadnuttx-747a4d6bf5a7d9897010fcaf403010f956ff4c7c.tar.gz
nuttx-747a4d6bf5a7d9897010fcaf403010f956ff4c7c.tar.bz2
nuttx-747a4d6bf5a7d9897010fcaf403010f956ff4c7c.zip
apps/builtin: Native Windows build fixes from Max Holtzberg
Diffstat (limited to 'apps/builtin/Makefile')
-rw-r--r--apps/builtin/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/builtin/Makefile b/apps/builtin/Makefile
index f89532871..9b64e7b17 100644
--- a/apps/builtin/Makefile
+++ b/apps/builtin/Makefile
@@ -58,7 +58,7 @@ endif
endif
ROOTDEPPATH = --dep-path .
-VPATH =
+VPATH =
# Build Targets
@@ -78,7 +78,7 @@ builtin_list.h: registry$(DELIM).updated
$(call DELFILE, builtin_list.h)
$(Q) touch builtin_list.h
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
- $(Q) for /f %%G in ('dir /b registry\*.bdat`) do ( type registry\%%G >> builtin_list.h )
+ $(Q) (for /f %%G in ('dir /b registry\*.bdat') do ( type registry\%%G >> builtin_list.h )) || echo ""
else
$(Q) ( \
filelist=`ls registry/*.bdat 2>/dev/null || echo ""`; \
@@ -92,7 +92,7 @@ builtin_proto.h: registry$(DELIM).updated
$(call DELFILE, builtin_proto.h)
$(Q) touch builtin_proto.h
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
- $(Q) for /f %%G in ('dir /b registry\*.pdat`) do ( type registry\%%G >> builtin_proto.h )
+ $(Q) (for /f %%G in ('dir /b registry\*.pdat') do ( type registry\%%G >> builtin_proto.h )) || echo ""
else
$(Q) ( \
filelist=`ls registry/*.pdat 2>/dev/null || echo ""`; \