diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-09-27 04:06:39 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-09-27 04:06:39 +0000 |
commit | 67451849def5ec162e230411c542b9d0e2608371 (patch) | |
tree | 4a2709071d021a6ffdaa10b4342da5ceae7da0af /Makefile | |
parent | de2b93859c702032ae801cb01a816aa42c1ab0ab (diff) | |
download | busybox-67451849def5ec162e230411c542b9d0e2608371.tar.gz |
pass EXTRA_CFLAGS to final link since it may contain things that affect linking (such as -m32)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -139,7 +139,7 @@ include $(patsubst %,%/Makefile.in, $(SRC_DIRS)) -include $(top_builddir)/.depend busybox: $(ALL_MAKEFILES) .depend $(libraries-y) - $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group + $(CC) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group $(STRIPCMD) $@ busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h |