Rev 28188 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#! /bin/sh# mkinstalldirs --- make directory hierarchyscriptversion=2003-11-08.23# Original author: Noah Friedman <friedman@prep.ai.mit.edu># Created: 1993-05-16# Public domain.## This file is maintained in Automake, please report# bugs to <bug-automake@gnu.org> or send patches to# <automake-patches@gnu.org>.errstatus=0dirmode=""usage="\Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...Create each directory DIR (with mode MODE, if specified), including allleading file name components.Report bugs to <bug-automake@gnu.org>."# process command line argumentswhile test $# -gt 0 ; docase $1 in-h | --help | --h*) # -h for helpecho "$usage"exit 0;;-m) # -m PERM argshifttest $# -eq 0 && { echo "$usage" 1>&2; exit 1; }dirmode=$1shift;;--version)echo "$0 $scriptversion"exit 0;;--) # stop option processingshiftbreak;;-*) # unknown optionecho "$usage" 1>&2exit 1;;*) # first non-opt argbreak;;esacdonefor filedoif test -d "$file"; thenshiftelsebreakfidonecase $# in0) exit 0 ;;esaccase $dirmode in'')if mkdir -p -- . 2>/dev/null; thenecho "mkdir -p -- $*"exec mkdir -p -- "$@"else# On NextStep and OpenStep, the `mkdir' command does not# recognize any option. It will interpret all options as# directories to create, and then abort because `.' already# exists.test -d ./-p && rmdir ./-ptest -d ./-- && rmdir ./--fi;;*)if mkdir -m "$dirmode" -p -- . 2>/dev/null; thenecho "mkdir -m $dirmode -p -- $*"exec mkdir -m "$dirmode" -p -- "$@"else# Clean up after NextStep and OpenStep mkdir.for d in ./-m ./-p ./-- "./$dirmode";dotest -d $d && rmdir $ddonefi;;esacfor filedoset fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`shiftpathcomp=for ddopathcomp="$pathcomp$d"case $pathcomp in-*) pathcomp=./$pathcomp ;;esacif test ! -d "$pathcomp"; thenecho "mkdir $pathcomp"mkdir "$pathcomp" || lasterr=$?if test ! -d "$pathcomp"; thenerrstatus=$lasterrelseif test ! -z "$dirmode"; thenecho "chmod $dirmode $pathcomp"lasterr=""chmod "$dirmode" "$pathcomp" || lasterr=$?if test ! -z "$lasterr"; thenerrstatus=$lasterrfifififipathcomp="$pathcomp/"donedoneexit $errstatus# Local Variables:# mode: shell-script# sh-indentation: 2# eval: (add-hook 'write-file-hooks 'time-stamp)# time-stamp-start: "scriptversion="# time-stamp-format: "%:y-%02m-%02d.%02H"# time-stamp-end: "$"# End: