diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-02 16:11:24 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-02 16:11:24 +0000 |
commit | 493691a4f5023097b909aa8a443bb45dd9d9a68c (patch) | |
tree | 0aab5403ae66802bd14094705e9282dfb1334bee /scripts/Makefile.IMA | |
parent | 7a7e54a1909371bcff72ab4944ffe36cf369aeec (diff) |
- minor tweak
Diffstat (limited to 'scripts/Makefile.IMA')
-rw-r--r-- | scripts/Makefile.IMA | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/Makefile.IMA b/scripts/Makefile.IMA index 371e570ca..dec5fde83 100644 --- a/scripts/Makefile.IMA +++ b/scripts/Makefile.IMA @@ -106,10 +106,11 @@ include libbb/Kbuild lib-all-y += $(patsubst %,libbb/%,$(sort $(lib-y))) lib-y:= +include Makefile.flags ifndef BB_VER BB_VER:="" endif -include Makefile.flags + CPPFLAGS+= -D"KBUILD_STR(s)=\#s" #-Q HOSTCC = gcc @@ -117,7 +118,7 @@ CC = gcc busybox: $(usage_stuff) $(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_EXTRA) --combine -fwhole-program \ - -funit-at-a-time -Wno-error \ + -funit-at-a-time -Wno-error -std=gnu99 \ -o $(@)_unstripped $(lib-all-y:.o=.c) \ -Wl,--start-group -lcrypt -lm -Wl,--end-group cp $(@)_unstripped $@ |