summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-12 08:03:23 +0000
committerEric Andersen <andersen@codepoet.org>1999-11-12 08:03:23 +0000
commiteded54bd96ed0394844f9ba23c5ab54dff8a917f (patch)
tree2f6b89cb42fe3b05b64da415dccb773d06ad9d76 /install.sh
parent96bcfd346b436aef16b29d9157b80fd4148b1421 (diff)
downloadbusybox-w32-eded54bd96ed0394844f9ba23c5ab54dff8a917f.tar.gz
busybox-w32-eded54bd96ed0394844f9ba23c5ab54dff8a917f.tar.bz2
busybox-w32-eded54bd96ed0394844f9ba23c5ab54dff8a917f.zip
Adjust install a bit...
Diffstat (limited to '')
-rwxr-xr-xinstall.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/install.sh b/install.sh
new file mode 100755
index 000000000..4a0b83254
--- /dev/null
+++ b/install.sh
@@ -0,0 +1,17 @@
1#!/bin/sh
2
3if [ "$1" == "" ]; then
4 echo "No installation directory. aborting."
5 exit 1;
6fi
7
8h=`cat busybox.links`
9
10mkdir -p $1/bin
11for i in $h ; do
12 mkdir -p $1/`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `
13 (cd $1/bin ; ln -s busybox `echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' ` )
14done
15rm -f $1/bin/busybox
16install -m 755 busybox $1/bin/busybox
17