summaryrefslogtreecommitdiff
path: root/busybox/busybox-1.00-rc1/busybox-suidinstall.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-10-13 19:10:02 +0000
committerChris Larson <clarson@kergoth.com>2004-10-13 19:10:02 +0000
commit4a58197bbbb266b0de058f2a46bba39d9b9f8e04 (patch)
treecc33ecaf8470c0fd38012d4a20d1a2b68540978c /busybox/busybox-1.00-rc1/busybox-suidinstall.patch
parent73edfbd9af8e00aca857cd35e4d2f76a2ed68320 (diff)
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/packages 2004/10/13 14:09:53-05:00 handhelds.org!kergoth Add busybox 1.00 final, yank the release candidate builds (if something breaks, yell at me). BKrev: 416d7d8asySs8zHqtv8juHz8monuIA
Diffstat (limited to 'busybox/busybox-1.00-rc1/busybox-suidinstall.patch')
-rw-r--r--busybox/busybox-1.00-rc1/busybox-suidinstall.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/busybox/busybox-1.00-rc1/busybox-suidinstall.patch b/busybox/busybox-1.00-rc1/busybox-suidinstall.patch
deleted file mode 100644
index b557c74c85..0000000000
--- a/busybox/busybox-1.00-rc1/busybox-suidinstall.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -urNd busybox/applets/install.sh busybox-new/applets/install.sh
---- busybox/applets/install.sh 2001-03-08 15:42:11.000000000 -0600
-+++ busybox-new/applets/install.sh 2002-10-11 12:04:01.000000000 -0500
-@@ -15,10 +15,15 @@
- fi
- h=`sort busybox.links | uniq`
-
-+if [ -n "$SUID" ]; then
-+ mode=4755
-+else
-+ mode=0755
-+fi
-
- rm -f $prefix/bin/busybox || exit 1
- mkdir -p $prefix/bin || exit 1
--install -m 755 busybox $prefix/bin/busybox || exit 1
-+install -m $mode busybox $prefix/bin/busybox || exit 1
-
- for i in $h ; do
- appdir=`dirname $i`