--- busybox.orig/applets/install.sh 2008-02-05 08:20:21 +0000 +++ busybox/applets/install.sh 2008-02-05 19:19:43 +0000 @@ -61,7 +61,7 @@ rm -f $prefix/bin/busybox || exit 1 mkdir -p $prefix/bin || exit 1 -install -m 755 busybox $prefix/bin/busybox || exit 1 +cp busybox $prefix/bin/busybox || exit 1 for i in $h; do appdir=`dirname $i` @@ -87,7 +87,7 @@ bb_path="busybox" ;; /sbin) - bb_path="../bin/busybox" + bb_path="busybox" ;; /usr/bin|/usr/sbin) bb_path="../../bin/busybox"