diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-19 23:01:33 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-19 23:01:33 +0000 |
commit | 8cd1a288fa15c8db5701ad94592c5a6a4562b1a9 (patch) | |
tree | 3e3dfc77159d7818a8d9c40eb15c9a3256974b9c /Makefile | |
parent | 28703015ab71784f40bc97f720ed900e26bd03ca (diff) | |
download | busybox-8cd1a288fa15c8db5701ad94592c5a6a4562b1a9.tar.gz |
ifupdown: parse() returning NULL and returning "" is not the same,
it turned out! wow... okay, fixing my buglet...
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -573,7 +573,8 @@ ifdef CONFIG_STATIC -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \ -Wl,--start-group $(busybox-all) -Wl,--end-group else - cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) -o $@ $(LDFLAGS) \ + cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) $(LDFLAGS) \ + -o $@ \ -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \ -Wl,--start-group $(busybox-all) -Wl,--end-group endif |