Title: [127851] trunk/Tools
Revision
127851
Author
[email protected]
Date
2012-09-07 03:44:57 -0700 (Fri, 07 Sep 2012)

Log Message

[Qt] Fix ROOT_BUILD_DIR on Windows MSVC build.
https://bugs.webkit.org/show_bug.cgi?id=96078

Patch by Zoltan Arvai <[email protected]> on 2012-09-07
Reviewed by Tor Arne Vestbø.

Correct JSC, DumpRenderTree, ImageDiff, QtTestBrowser binaries location by adding $$toSystemPath to ROOT_BUILD_DIR generation.

* qmake/mkspecs/features/default_pre.prf:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (127850 => 127851)


--- trunk/Tools/ChangeLog	2012-09-07 10:26:02 UTC (rev 127850)
+++ trunk/Tools/ChangeLog	2012-09-07 10:44:57 UTC (rev 127851)
@@ -1,3 +1,14 @@
+2012-09-07  Zoltan Arvai  <[email protected]>
+
+        [Qt] Fix ROOT_BUILD_DIR on Windows MSVC build.
+        https://bugs.webkit.org/show_bug.cgi?id=96078
+
+        Reviewed by Tor Arne Vestbø.
+
+        Correct JSC, DumpRenderTree, ImageDiff, QtTestBrowser binaries location by adding $$toSystemPath to ROOT_BUILD_DIR generation.
+
+        * qmake/mkspecs/features/default_pre.prf:
+
 2012-09-07  Christophe Dumez  <[email protected]>
 
         [EFL] Add TestExpectations file for efl-wk1

Modified: trunk/Tools/qmake/mkspecs/features/default_pre.prf (127850 => 127851)


--- trunk/Tools/qmake/mkspecs/features/default_pre.prf	2012-09-07 10:26:02 UTC (rev 127850)
+++ trunk/Tools/qmake/mkspecs/features/default_pre.prf	2012-09-07 10:44:57 UTC (rev 127851)
@@ -19,7 +19,7 @@
 # Resolve root directories for source and build
 ROOT_WEBKIT_DIR = $$replace(PWD, /Tools/qmake/mkspecs/features$,)
 WEBKIT_SUBDIR = $$replace(_PRO_FILE_PWD_, $${ROOT_WEBKIT_DIR},)
-ROOT_BUILD_DIR = $$replace(OUT_PWD, $${WEBKIT_SUBDIR}$,)
+ROOT_BUILD_DIR = $$toSystemPath($$replace(OUT_PWD, $${WEBKIT_SUBDIR}$,))
 
 # We want the QtWebKit API forwarding includes to live in the root build dir.
 MODULE_BASE_DIR = $$ROOT_WEBKIT_DIR
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to