From ebad9d789e8f4be10d95dd6a58af9cf8039bb6ba Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 8 Dec 2008 21:21:46 +0000 Subject: Need to use cygpath consistently for compilation in subdirectories git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1439 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/configs/z8encore000zco/ostest/Make.defs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nuttx/configs/z8encore000zco/ostest/Make.defs') diff --git a/nuttx/configs/z8encore000zco/ostest/Make.defs b/nuttx/configs/z8encore000zco/ostest/Make.defs index 87fa8df2a..880c79e86 100644 --- a/nuttx/configs/z8encore000zco/ostest/Make.defs +++ b/nuttx/configs/z8encore000zco/ostest/Make.defs @@ -162,12 +162,12 @@ endef define COMPILE @#echo "CC: $1" - @$(CC) $(CFLAGS) $1 + @(wfile=`cygpath -w $1`; $(CC) $(CFLAGS) $$wfile) endef define ASSEMBLE @#echo "AS: $1" - @$(AS) -c $(AFLAGS) $1 + @(wfile=`cygpath -w $1`; $(AS) $(AFLAGS) $$wfile) endef define ARCHIVE -- cgit v1.2.3