# HG changeset patch # User Rob Landley # Date 1282376790 18000 # Node ID fd67d5a442c9033b5e3839a10e611d63b2ea3931 # Parent 1a24dc2bb3cbc7e882515d4a09608340953c8fb8 Switch from toybox netcat to busybox netcat. diff -r 1a24dc2bb3cb -r fd67d5a442c9 sources/toys/native-build.sh --- a/sources/toys/native-build.sh Sat Aug 21 01:33:02 2010 -0500 +++ b/sources/toys/native-build.sh Sat Aug 21 02:46:30 2010 -0500 @@ -55,8 +55,8 @@ # command line arguments, and this one's a known quantity.) mkdir -p upload - # Replace toybox with busybox when busybox grows -L support. - toybox nc -s 127.0.0.1 -p $FTP_PORT -L busybox ftpd -w upload & + # Busybox needs -s 127.0.0.1 support here + busybox nc -p $FTP_PORT -lle busybox ftpd -w upload & trap "kill $(jobs -p)" EXIT disown $(jobs -p)