[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

aroben at apple.com aroben at apple.com
Thu Apr 8 00:33:03 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit d1285a7ae327a89fba3eb72b5a2f384daf0ef60a
Author: aroben at apple.com <aroben at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 11 19:45:59 2009 +0000

    Windows build fix for systems with spaces in their paths
    
    * JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh: Quote some paths.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52011 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 8834665..cb7162a 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,9 @@
+2009-12-11  Adam Roben  <aroben at apple.com>
+
+        Windows build fix for systems with spaces in their paths
+
+        * JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh: Quote some paths.
+
 2009-12-11  Chris Marrin  <cmarrin at apple.com>
 
         Reviewed by Adam Roben.
diff --git a/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh b/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh
index 6aa3d2c..a37a18b 100755
--- a/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh
+++ b/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh
@@ -1,11 +1,11 @@
 #!/usr/bin/bash
 
 # Determine if we have QuartzCore so we can turn on
-if [ -f ${WEBKITLIBRARIESDIR}/include/QuartzCore/QuartzCore.h ]
+if [ -f "${WEBKITLIBRARIESDIR}/include/QuartzCore/QuartzCore.h" ]
 then
-	echo "#define QUARTZCORE_PRESENT 1" > ${WEBKITOUTPUTDIR}/Include/JavaScriptCore/QuartzCorePresent.h
+	echo "#define QUARTZCORE_PRESENT 1" > "${WEBKITOUTPUTDIR}/Include/JavaScriptCore/QuartzCorePresent.h"
 else
-	echo "#define QUARTZCORE_PRESENT 0" > ${WEBKITOUTPUTDIR}/Include/JavaScriptCore/QuartzCorePresent.h
+	echo "#define QUARTZCORE_PRESENT 0" > "${WEBKITOUTPUTDIR}/Include/JavaScriptCore/QuartzCorePresent.h"
 fi
 
 NUMCPUS=`../../../WebKitTools/Scripts/num-cpus`

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list