diff options
author | Rob Landley <rob@landley.net> | 2008-11-15 05:17:23 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2008-11-15 05:17:23 -0600 |
commit | ae2e4b743aee024f61793cc66ecf2be2115da250 (patch) | |
tree | 8187fbc41e368113c226ea4b126dac4a457c2f22 /scripts/make.sh | |
parent | b5d557f0860766bbe89854241e07ff6ec1a2e39a (diff) | |
download | toybox-ae2e4b743aee024f61793cc66ecf2be2115da250.tar.gz |
Add netcat server mode, -l, -L, and -t.
Diffstat (limited to 'scripts/make.sh')
-rwxr-xr-x | scripts/make.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/make.sh b/scripts/make.sh index 6d31a5e8..e9c2a965 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -85,6 +85,6 @@ TOYFILES=$(cat .config | sed -nre 's/^CONFIG_(.*)=y/\1/;t skip;b;:skip;s/_.*//;p echo "Compile toybox..." -$DEBUG $CC $CFLAGS -I . -o toybox_unstripped $OPTIMIZE \ - main.c lib/*.c $TOYFILES || exit 1 +$DEBUG $CC $CFLAGS -I . -o toybox_unstripped $OPTIMIZE main.c lib/*.c \ + $TOYFILES -Wl,--as-needed,-lutil,--no-as-needed || exit 1 $DEBUG $STRIP toybox_unstripped -o toybox || exit 1 |