From 00b7719a7317870bbd2e12c75c1868ae8a0247ca Mon Sep 17 00:00:00 2001 From: Brian Havard Date: Mon, 10 Sep 2001 14:30:53 +0000 Subject: [PATCH] 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 --- build/mkdir.sh | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.50.1