summaryrefslogtreecommitdiff
path: root/nuttx/arch
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-06 03:32:15 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-06 03:32:15 +0000
commit84beafe48b5fdb3bf8dfc80bf84ce922eb7dba31 (patch)
tree4126086afc9615dfee8509fe913fdc1a716d6b14 /nuttx/arch
parent37a1883664d40bc4c6854edd29dd5014dbb3d1c7 (diff)
downloadpx4-nuttx-84beafe48b5fdb3bf8dfc80bf84ce922eb7dba31.tar.gz
px4-nuttx-84beafe48b5fdb3bf8dfc80bf84ce922eb7dba31.tar.bz2
px4-nuttx-84beafe48b5fdb3bf8dfc80bf84ce922eb7dba31.zip
Fix QEMU build target name
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3345 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch')
-rw-r--r--nuttx/arch/x86/src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/x86/src/Makefile b/nuttx/arch/x86/src/Makefile
index e34e85338..ea9fc819e 100644
--- a/nuttx/arch/x86/src/Makefile
+++ b/nuttx/arch/x86/src/Makefile
@@ -42,13 +42,13 @@ ARCH_SUBDIR = i486
endif
ifeq ($(WINTOOL),y)
- NUTTX = "${shell cygpath -w $(TOPDIR)/nuttx$(EXEEXT)}"
+ NUTTX = "${shell cygpath -w $(TOPDIR)/nuttx}"
CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
-I "${shell cygpath -w $(ARCH_SRCDIR)/common}" \
-I "${shell cygpath -w $(ARCH_SRCDIR)/$(ARCH_SUBDIR)}" \
-I "${shell cygpath -w $(TOPDIR)/sched}"
else
- NUTTX = $(TOPDIR)/nuttx$(EXEEXT)
+ NUTTX = $(TOPDIR)/nuttx
CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common \
-I$(ARCH_SRCDIR)/$(ARCH_SUBDIR) -I$(TOPDIR)/sched
endif