diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-09-09 21:56:57 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-09 21:56:57 +0200 |
commit | d7dbb530b57e4bce56a02df93474a3b893190b2d (patch) | |
tree | 31b6ddfb035e3f395e9ec6e986e8e20a123568ca /source4/script | |
parent | 37a63fb039a48e5283cdd7504b9385068508c9bd (diff) | |
download | samba-d7dbb530b57e4bce56a02df93474a3b893190b2d.tar.gz samba-d7dbb530b57e4bce56a02df93474a3b893190b2d.tar.bz2 samba-d7dbb530b57e4bce56a02df93474a3b893190b2d.zip |
Remove unused scripts for installing binaries.
(This used to be commit 677179234ecaa6980dedc2bb6f77c525b56b532f)
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/installtorture.sh | 18 | ||||
-rwxr-xr-x | source4/script/uninstalltorture.sh | 15 |
2 files changed, 0 insertions, 33 deletions
diff --git a/source4/script/installtorture.sh b/source4/script/installtorture.sh deleted file mode 100755 index db7ad9110c..0000000000 --- a/source4/script/installtorture.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -INSTALLPERMS=$1 -TORTUREDIR=$2 -shift -shift - -for p in $*; do - p2=`dirname $p` - base=`basename $p` - DESTDIR=$TORTUREDIR/`basename $p2` - mkdir -p $DESTDIR - echo Installing $p as $DESTDIR/$base - cp -f $p $DESTDIR/ - chmod $INSTALLPERMS $DESTDIR/$base -done - -exit 0 diff --git a/source4/script/uninstalltorture.sh b/source4/script/uninstalltorture.sh deleted file mode 100755 index 0c6e4ec991..0000000000 --- a/source4/script/uninstalltorture.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -TORTUREDIR=$1 -shift -shift - -for p in $*; do - p2=`dirname $p` - base=`basename $p` - DESTDIR=$TORTUREDIR/`basename $p2` - echo Removing $DESTDIR/$base - rm -f $p $DESTDIR/ -done - -exit 0 |