summaryrefslogtreecommitdiff
path: root/source3/script/installbin.sh.in
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-05-22 12:36:34 +1000
committerAndrew Bartlett <abartlet@samba.org>2013-05-28 12:17:11 +1000
commitd98f1075443b7feedab0212e75366d502b20e17a (patch)
treeccd6fbc442b86569fb66e2ba1e737f8e3ffffe15 /source3/script/installbin.sh.in
parent167b8bddad24421a2e8fcf0e7647ef3296b1665c (diff)
downloadsamba-d98f1075443b7feedab0212e75366d502b20e17a.tar.gz
samba-d98f1075443b7feedab0212e75366d502b20e17a.tar.bz2
samba-d98f1075443b7feedab0212e75366d502b20e17a.zip
build: Remove unused install*.sh scripts
Reviewed-by: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'source3/script/installbin.sh.in')
-rwxr-xr-xsource3/script/installbin.sh.in34
1 files changed, 0 insertions, 34 deletions
diff --git a/source3/script/installbin.sh.in b/source3/script/installbin.sh.in
deleted file mode 100755
index c607d9e445..0000000000
--- a/source3/script/installbin.sh.in
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-INSTALLPERMS=$1
-DESTDIR=$2
-prefix=`echo $3 | sed 's/\/\//\//g'`
-BINDIR=`echo $4 | sed 's/\/\//\//g'`
-SBINDIR=@sbindir@
-shift
-shift
-shift
-shift
-
-for p in $*; do
- p2=`basename $p`
- echo "Installing $p as $DESTDIR/$BINDIR/$p2 "
- if [ -f $DESTDIR/$BINDIR/$p2 ]; then
- rm -f $DESTDIR/$BINDIR/$p2.old
- mv $DESTDIR/$BINDIR/$p2 $DESTDIR/$BINDIR/$p2.old
- fi
- cp $p $DESTDIR/$BINDIR/
- chmod $INSTALLPERMS $DESTDIR/$BINDIR/$p2
-done
-
-
-cat << EOF
-======================================================================
-The binaries are installed. You may restore the old binaries (if there
-were any) using the command "make revert". You may uninstall the binaries
-using the command "make uninstallbin" or "make uninstall" to uninstall
-binaries, man pages and shell scripts.
-======================================================================
-EOF
-
-exit 0