diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-05-23 09:51:36 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-27 16:37:26 +1000 |
commit | e78e156d95ba19fec663b83f31aaca13d19cfd7b (patch) | |
tree | 42507f976966e8ddc82bebbb74ed42d62ae7e15f | |
parent | 940a6a62058a6bbd5f32ac1e1eba11b37d411401 (diff) | |
download | samba-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>
-rwxr-xr-x | source3/script/mkinstalldirs | 38 |
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 |