aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4026d61c5..b0beb1dd2 100644
--- a/Makefile
+++ b/Makefile
@@ -153,10 +153,11 @@ else
153 VPATH = .:$(BB_SRC_DIR) 153 VPATH = .:$(BB_SRC_DIR)
154 CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH))) 154 CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH)))
155 CONFIG_H = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null)) 155 CONFIG_H = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null))
156 CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH))) $(CROSS_CFLAGS) 156 CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH)))
157endif 157endif
158 158
159OBJECTS = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o 159OBJECTS = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o
160CFLAGS += $(CROSS_CFLAGS)
160CFLAGS += -DBB_VER='"$(VERSION)"' 161CFLAGS += -DBB_VER='"$(VERSION)"'
161CFLAGS += -DBB_BT='"$(BUILDTIME)"' 162CFLAGS += -DBB_BT='"$(BUILDTIME)"'
162ifdef BB_INIT_SCRIPT 163ifdef BB_INIT_SCRIPT