changeset 1078:e81a9b8b3b93

Use toybox for a temporary workaround for busybox regression.
author Rob Landley <rob@landley.net>
date Fri, 14 May 2010 04:19:58 -0500
parents 910785c683d5
children ce7cc07f44b3
files sources/toys/native-build.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sources/toys/native-build.sh	Fri May 14 04:18:46 2010 -0500
+++ b/sources/toys/native-build.sh	Fri May 14 04:19:58 2010 -0500
@@ -56,7 +56,7 @@
 
     mkdir -p upload
     # Replace toybox with busybox when busybox grows -L support.
-    busybox nc -s 127.0.0.1 -p $FTP_PORT -lle busybox ftpd -w upload &
+    toybox nc -s 127.0.0.1 -p $FTP_PORT -L busybox ftpd -w upload &
     trap "kill $(jobs -p)" EXIT
     disown $(jobs -p)