From e0c418e13b005908da492ae2151096e8f2246287 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 15 Dec 2005 07:25:54 +0000 Subject: The rest of Yann E. Morin's install revamp. --- applets/install.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'applets/install.sh') diff --git a/applets/install.sh b/applets/install.sh index d163a2ef8..2fcd2ae6e 100755 --- a/applets/install.sh +++ b/applets/install.sh @@ -8,12 +8,13 @@ if [ "$prefix" = "" ]; then echo "No installation directory, aborting." exit 1; fi -if [ "$2" = "--hardlinks" ]; then - linkopts="-f" -else - linkopts="-fs" -fi h=`sort busybox.links | uniq` +case "$2" in + --hardlinks) linkopts="-f";; + --symlinks) linkopts="-fs";; + "") h="";; + *) echo "Unknown install option: $2"; exit 1;; +esac rm -f $prefix/bin/busybox || exit 1 -- cgit v1.2.3