Patch from Larry Doolittle to reduce the chance that fussing with VPATH will
authorEric Andersen <andersen@codepoet.org>
Wed, 31 Jan 2001 01:38:05 +0000 (01:38 -0000)
committerEric Andersen <andersen@codepoet.org>
Wed, 31 Jan 2001 01:38:05 +0000 (01:38 -0000)
break cross-compilation.
 -Erik

Makefile

index 4026d61c5de4b1966527ec0ebef3ec2bbcca5385..b0beb1dd21761ef1692289752969fd142a5b99fb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -153,10 +153,11 @@ else
     VPATH = .:$(BB_SRC_DIR)
     CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH)))
     CONFIG_H    = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null))
-    CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH))) $(CROSS_CFLAGS)
+    CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH)))
 endif
 
 OBJECTS   = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o
+CFLAGS    += $(CROSS_CFLAGS)
 CFLAGS    += -DBB_VER='"$(VERSION)"'
 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
 ifdef BB_INIT_SCRIPT