summaryrefslogtreecommitdiff
path: root/source4/script/installdirs.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/installdirs.sh
parent1867a6033ca22da715017df005a5ad61c66e1597 (diff)
downloadsamba-e196e526408d478cac895f04917503706c469cf6.tar.gz
samba-e196e526408d478cac895f04917503706c469cf6.tar.bz2
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/installdirs.sh')
-rwxr-xr-xsource4/script/installdirs.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/source4/script/installdirs.sh b/source4/script/installdirs.sh
deleted file mode 100755
index 9557b86d3b..0000000000
--- a/source4/script/installdirs.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-while ( test -n "$1" ); do
- if [ ! -d $1 ]; then
- mkdir -p $1
- fi
-
- if [ ! -d $1 ]; then
- echo Failed to make directory $1
- exit 1
- fi
-
- shift;
-done
-
-
-