From ae2e4b743aee024f61793cc66ecf2be2115da250 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 15 Nov 2008 05:17:23 -0600 Subject: Add netcat server mode, -l, -L, and -t. --- scripts/make.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/make.sh') 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 -- cgit v1.2.3