aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xapplets/install.sh10
-rwxr-xr-xinstall.sh10
2 files changed, 10 insertions, 10 deletions
diff --git a/applets/install.sh b/applets/install.sh
index 236f62a56..1ca7183c8 100755
--- a/applets/install.sh
+++ b/applets/install.sh
@@ -2,7 +2,8 @@
set -e
set -x
-if [ "$1" = "" ]; then
+prefix=$1
+if [ "$prefix" = "" ]; then
echo "No installation directory, aborting."
exit 1;
fi
@@ -11,13 +12,12 @@ if [ "$2" = "--hardlinks" ]; then
else
linkopts="-fs"
fi
-prefix=$1
h=`sort busybox.links | uniq`
-rm -f $1/bin/busybox
-mkdir -p $1/bin
-install -m 755 busybox $1/bin/busybox
+rm -f $prefix/bin/busybox
+mkdir -p $prefix/bin
+install -m 755 busybox $prefix/bin/busybox
for i in $h ; do
appdir=`dirname $i`
diff --git a/install.sh b/install.sh
index 236f62a56..1ca7183c8 100755
--- a/install.sh
+++ b/install.sh
@@ -2,7 +2,8 @@
set -e
set -x
-if [ "$1" = "" ]; then
+prefix=$1
+if [ "$prefix" = "" ]; then
echo "No installation directory, aborting."
exit 1;
fi
@@ -11,13 +12,12 @@ if [ "$2" = "--hardlinks" ]; then
else
linkopts="-fs"
fi
-prefix=$1
h=`sort busybox.links | uniq`
-rm -f $1/bin/busybox
-mkdir -p $1/bin
-install -m 755 busybox $1/bin/busybox
+rm -f $prefix/bin/busybox
+mkdir -p $prefix/bin
+install -m 755 busybox $prefix/bin/busybox
for i in $h ; do
appdir=`dirname $i`