summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-05-23 09:51:36 +1000
committerAndrew Bartlett <abartlet@samba.org>2013-05-27 16:37:26 +1000
commite78e156d95ba19fec663b83f31aaca13d19cfd7b (patch)
tree42507f976966e8ddc82bebbb74ed42d62ae7e15f /source3/script
parent940a6a62058a6bbd5f32ac1e1eba11b37d411401 (diff)
downloadsamba-e78e156d95ba19fec663b83f31aaca13d19cfd7b.tar.gz
samba-e78e156d95ba19fec663b83f31aaca13d19cfd7b.tar.bz2
samba-e78e156d95ba19fec663b83f31aaca13d19cfd7b.zip
build: Remove mkinstalldirs
This is not used in the waf build. Andrew Bartlett Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/mkinstalldirs38
1 files changed, 0 insertions, 38 deletions
diff --git a/source3/script/mkinstalldirs b/source3/script/mkinstalldirs
deleted file mode 100755
index f945dbf2bc..0000000000
--- a/source3/script/mkinstalldirs
+++ /dev/null
@@ -1,38 +0,0 @@
-#! /bin/sh
-# mkinstalldirs --- make directory hierarchy
-# Author: Noah Friedman <friedman@prep.ai.mit.edu>
-# Created: 1993-05-16
-# Public domain
-
-errstatus=0
-
-for file
-do
- set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
- shift
-
- pathcomp=
- for d
- do
- pathcomp="$pathcomp$d"
- case "$pathcomp" in
- -* ) pathcomp=./$pathcomp ;;
- esac
-
- if test ! -d "$pathcomp"; then
- echo "mkdir $pathcomp" 1>&2
-
- mkdir "$pathcomp" || lasterr=$?
-
- if test ! -d "$pathcomp"; then
- errstatus=$lasterr
- fi
- fi
-
- pathcomp="$pathcomp/"
- done
-done
-
-exit $errstatus
-
-# mkinstalldirs ends here