[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
aroben at apple.com
aroben at apple.com
Tue Jan 5 23:44:13 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 816b3a90f78782d55c8cb9b52dda1b923e6f4e92
Author: aroben at apple.com <aroben at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Dec 8 01:03:41 2009 +0000
Windows build fix for checkouts with a space in the path
* win/tools/scripts/auto-version.sh: Quote the output file's directory
before passing it to mkdir.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51816 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitLibraries/ChangeLog b/WebKitLibraries/ChangeLog
index a9ab276..a0f1cef 100644
--- a/WebKitLibraries/ChangeLog
+++ b/WebKitLibraries/ChangeLog
@@ -1,3 +1,10 @@
+2009-12-07 Adam Roben <aroben at apple.com>
+
+ Windows build fix for checkouts with a space in the path
+
+ * win/tools/scripts/auto-version.sh: Quote the output file's directory
+ before passing it to mkdir.
+
2009-12-01 Alexey Proskuryakov <ap at apple.com>
Reviewed by Darin Adler.
diff --git a/WebKitLibraries/win/tools/scripts/auto-version.sh b/WebKitLibraries/win/tools/scripts/auto-version.sh
index a67184f..c448db7 100755
--- a/WebKitLibraries/win/tools/scripts/auto-version.sh
+++ b/WebKitLibraries/win/tools/scripts/auto-version.sh
@@ -34,7 +34,7 @@ chomp()
FALLBACK_VERSION_PATH=`cygpath -u "$WEBKITLIBRARIESDIR\\tools\\scripts\\VERSION"`
OUTPUT_FILE=$(cygpath -u "$1")/include/autoversion.h
-mkdir -p $(dirname "$OUTPUT_FILE")
+mkdir -p "$(dirname "$OUTPUT_FILE")"
# Take the initial version number from RC_PROJECTSOURCEVERSION if it
# exists, otherwise fall back to the version number stored in the source.
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list