aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-06-07 18:08:25 +0000
committerMike Frysinger <vapier@gentoo.org>2006-06-07 18:08:25 +0000
commit81514ecca37fdd0d158377287a45db8aaa926d67 (patch)
treec8d20c6db30079bea85ed80a15d096d439a7f5a1 /applets
parent74b29a107fe9cd48319c3ea767e5b8dead1f31e7 (diff)
downloadbusybox-w32-81514ecca37fdd0d158377287a45db8aaa926d67.tar.gz
busybox-w32-81514ecca37fdd0d158377287a45db8aaa926d67.tar.bz2
busybox-w32-81514ecca37fdd0d158377287a45db8aaa926d67.zip
add support for cleaning out previous busybox install
Diffstat (limited to 'applets')
-rwxr-xr-xapplets/install.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/applets/install.sh b/applets/install.sh
index 8bf488619..1cd97bba3 100755
--- a/applets/install.sh
+++ b/applets/install.sh
@@ -9,9 +9,11 @@ if [ -z "$prefix" ]; then
9 exit 1; 9 exit 1;
10fi 10fi
11h=`sort busybox.links | uniq` 11h=`sort busybox.links | uniq`
12cleanup="0"
12case "$2" in 13case "$2" in
13 --hardlinks) linkopts="-f";; 14 --hardlinks) linkopts="-f";;
14 --symlinks) linkopts="-fs";; 15 --symlinks) linkopts="-fs";;
16 --cleanup) cleanup="1";;
15 "") h="";; 17 "") h="";;
16 *) echo "Unknown install option: $2"; exit 1;; 18 *) echo "Unknown install option: $2"; exit 1;;
17esac 19esac
@@ -34,6 +36,22 @@ if [ -n "$DO_INSTALL_LIBS" ] && [ "$DO_INSTALL_LIBS" != "n" ]; then
34 fi 36 fi
35 done 37 done
36fi 38fi
39
40if [ "$cleanup" = "1" ] && [ -e "$prefix/bin/busybox" ]; then
41 inode=`ls -i "$prefix/bin/busybox" | awk '{print $1}'`
42 sub_shell_it=`
43 cd "$prefix"
44 for d in usr/sbin usr/bin sbin bin ; do
45 pd=$PWD
46 if [ -d "$d" ]; then
47 cd $d
48 ls -iL . | grep "^ *$inode" | awk '{print $2}' | env -i xargs rm -f
49 fi
50 cd "$pd"
51 done
52 `
53fi
54
37rm -f $prefix/bin/busybox || exit 1 55rm -f $prefix/bin/busybox || exit 1
38mkdir -p $prefix/bin || exit 1 56mkdir -p $prefix/bin || exit 1
39install -m 755 busybox $prefix/bin/busybox || exit 1 57install -m 755 busybox $prefix/bin/busybox || exit 1