diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-25 10:19:50 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-25 10:19:50 +0000 |
commit | 119b59cd0df00269bfe51d906657193217b8c884 (patch) | |
tree | be4bc7f812a9df2c6b3f17e6c3cc9bfafad07253 /busybox/switchbox-1.00/switchbox.patch | |
parent | c985a77fad25302d576fbcf92149c983887bc0b9 (diff) |
Remove the EOLN_NATIVE flag from a ton of files (patches & the like for which line ending conversions can break things).
BKrev: 41a5b1c6eA2OPeQrDQEgEwAmKXvQJg
Diffstat (limited to 'busybox/switchbox-1.00/switchbox.patch')
-rw-r--r-- | busybox/switchbox-1.00/switchbox.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/busybox/switchbox-1.00/switchbox.patch b/busybox/switchbox-1.00/switchbox.patch index e69de29bb2..c600c5d007 100644 --- a/busybox/switchbox-1.00/switchbox.patch +++ b/busybox/switchbox-1.00/switchbox.patch @@ -0,0 +1,38 @@ +--- busybox-1.00-rc3/applets/install.sh 2001-03-09 08:12:11.000000000 +1030 ++++ switchbox/applets/install.sh 2004-08-31 11:27:23.000000000 +0930 +@@ -16,28 +16,28 @@ + h=`sort busybox.links | uniq` + + +-rm -f $prefix/bin/busybox || exit 1 ++rm -f $prefix/bin/switchbox || exit 1 + mkdir -p $prefix/bin || exit 1 +-install -m 755 busybox $prefix/bin/busybox || exit 1 ++install -m 755 busybox $prefix/bin/switchbox || exit 1 + + for i in $h ; do + appdir=`dirname $i` + mkdir -p $prefix/$appdir || exit 1 + if [ "$2" = "--hardlinks" ]; then +- bb_path="$prefix/bin/busybox" ++ bb_path="$prefix/bin/switchbox" + else + case "$appdir" in + /) +- bb_path="bin/busybox" ++ bb_path="bin/switchbox" + ;; + /bin) +- bb_path="busybox" ++ bb_path="switchbox" + ;; + /sbin) +- bb_path="../bin/busybox" ++ bb_path="../bin/switchbox" + ;; + /usr/bin|/usr/sbin) +- bb_path="../../bin/busybox" ++ bb_path="../../bin/switchbox" + ;; + *) + echo "Unknown installation directory: $appdir" |