From: Brian Havard Date: Mon, 10 Sep 2001 14:30:53 +0000 (+0000) Subject: Don't try to mkdir drive letters should they be included in a full path. X-Git-Tag: 2.0.26~275 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00b7719a7317870bbd2e12c75c1868ae8a0247ca;p=apache Don't try to mkdir drive letters should they be included in a full path. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90984 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/mkdir.sh b/build/mkdir.sh index 4cd33c5671..b947c92606 100755 --- a/build/mkdir.sh +++ b/build/mkdir.sh @@ -23,6 +23,8 @@ for file in ${1+"$@"} ; do pathcomp="$pathcomp$d" case "$pathcomp" in -* ) pathcomp=./$pathcomp ;; + ?: ) pathcomp="$pathcomp/" + continue ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" 1>&2