From b1397cd73c00dc4c9fb044045195b32f67c08643 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 6 Mar 2011 03:32:15 +0000 Subject: [PATCH] Fix QEMU build target name git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3345 42af7a65-404d-4744-a932-0658087f49c3 --- arch/x86/src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/src/Makefile b/arch/x86/src/Makefile index e34e85338b..ea9fc819e8 100644 --- a/arch/x86/src/Makefile +++ b/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