summaryrefslogtreecommitdiffstats
path: root/source4/script/revert.sh
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-02-07 13:18:43 +1100
committerAndrew Tridgell <tridge@samba.org>2011-02-07 04:09:40 +0100
commite196e526408d478cac895f04917503706c469cf6 (patch)
tree578f8e9265e2610a916f35288f2273adbd250ad2 /source4/script/revert.sh
parent1867a6033ca22da715017df005a5ad61c66e1597 (diff)
downloadsamba-e196e526408d478cac895f04917503706c469cf6.tar.gz
samba-e196e526408d478cac895f04917503706c469cf6.tar.xz
samba-e196e526408d478cac895f04917503706c469cf6.zip
s4-build: remove a bunch of unused build scripts
these were leftover from the autoconf build Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Feb 7 04:09:40 CET 2011 on sn-devel-104
Diffstat (limited to 'source4/script/revert.sh')
-rwxr-xr-xsource4/script/revert.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/source4/script/revert.sh b/source4/script/revert.sh
deleted file mode 100755
index 8df5fd2fbd..0000000000
--- a/source4/script/revert.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-BINDIR=$1
-shift
-
-for p in $*; do
- p2=`basename $p`
- if [ -f $BINDIR/$p2.old ]; then
- echo Restoring $BINDIR/$p2.old
- mv $BINDIR/$p2 $BINDIR/$p2.new
- mv $BINDIR/$p2.old $BINDIR/$p2
- rm -f $BINDIR/$p2.new
- else
- echo Not restoring $p
- fi
-done
-
-exit 0
-