busybox/applets/install.sh
Eric Andersen b186d980d6 Stuf
1999-12-03 09:19:54 +00:00

22 lines
344 B
Bash
Executable File

#!/bin/sh
set -e
if [ "$1" == "" ]; then
echo "No installation directory, aborting."
exit 1;
fi
h=`sort busybox.links | uniq`
for i in $h ; do
echo " $1$i -> /bin/busybox"
mkdir -p $1/`echo $i | sed -e 's/\/[^\/]*$//' `
rm -f $1$i
ln -s /bin/busybox $1$i
done
rm -f $1/bin/busybox
install -m 755 busybox $1/bin/busybox
exit 0