summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Havard <bjh@apache.org>2001-09-10 16:30:53 +0200
committerBrian Havard <bjh@apache.org>2001-09-10 16:30:53 +0200
commit00b7719a7317870bbd2e12c75c1868ae8a0247ca (patch)
treef8c306a4af59c67d17ac0bcc421ae420ca8cc9e7
parentIt is completely bogus that I feel I have to do this. I remain -1 for (diff)
downloadapache2-00b7719a7317870bbd2e12c75c1868ae8a0247ca.tar.xz
apache2-00b7719a7317870bbd2e12c75c1868ae8a0247ca.zip
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
-rwxr-xr-xbuild/mkdir.sh2
1 files changed, 2 insertions, 0 deletions
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