changeset 1218:fd67d5a442c9

Switch from toybox netcat to busybox netcat.
author Rob Landley <rob@landley.net>
date Sat, 21 Aug 2010 02:46:30 -0500
parents 1a24dc2bb3cb
children a23ee1b6b8de
files sources/toys/native-build.sh
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)