Adjust install a bit...

This commit is contained in:
Eric Andersen
1999-11-12 08:03:23 +00:00
parent 96bcfd346b
commit eded54bd96
5 changed files with 41 additions and 23 deletions

17
install.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/sh
if [ "$1" == "" ]; then
echo "No installation directory. aborting."
exit 1;
fi
h=`cat busybox.links`
mkdir -p $1/bin
for i in $h ; do
mkdir -p $1/`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `
(cd $1/bin ; ln -s busybox `echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' ` )
done
rm -f $1/bin/busybox
install -m 755 busybox $1/bin/busybox