aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-27 04:06:39 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-27 04:06:39 +0000
commitc6616521b517254d7df41f7df24c1953fe86bfcb (patch)
tree4a2709071d021a6ffdaa10b4342da5ceae7da0af
parent82ed9870f4eb00a85b5bf4c015b4e5e6d70c37db (diff)
downloadbusybox-w32-c6616521b517254d7df41f7df24c1953fe86bfcb.tar.gz
busybox-w32-c6616521b517254d7df41f7df24c1953fe86bfcb.tar.bz2
busybox-w32-c6616521b517254d7df41f7df24c1953fe86bfcb.zip
pass EXTRA_CFLAGS to final link since it may contain things that affect linking (such as -m32)
git-svn-id: svn://busybox.net/trunk/busybox@11660 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a88062e54..f71c53694 100644
--- a/Makefile
+++ b/Makefile
@@ -139,7 +139,7 @@ include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
139-include $(top_builddir)/.depend 139-include $(top_builddir)/.depend
140 140
141busybox: $(ALL_MAKEFILES) .depend $(libraries-y) 141busybox: $(ALL_MAKEFILES) .depend $(libraries-y)
142 $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group 142 $(CC) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
143 $(STRIPCMD) $@ 143 $(STRIPCMD) $@
144 144
145busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h 145busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h