]> granicus.if.org Git - apache/commitdiff
Don't try to mkdir drive letters should they be included in a full path.
authorBrian Havard <bjh@apache.org>
Mon, 10 Sep 2001 14:30:53 +0000 (14:30 +0000)
committerBrian Havard <bjh@apache.org>
Mon, 10 Sep 2001 14:30:53 +0000 (14:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90984 13f79535-47bb-0310-9956-ffa450edef68

build/mkdir.sh

index 4cd33c5671cc98fd27e30f2570bf6a0d55600fd2..b947c9260606e7a3ab1a5e7730cb4926e08fc896 100755 (executable)
@@ -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