Title: [128884] trunk/Tools
Revision
128884
Author
[email protected]
Date
2012-09-18 06:29:43 -0700 (Tue, 18 Sep 2012)

Log Message

[Qt] Prospective Qt/Windows cross-compiling fix

Reviewed by Tor Arne Vestbø.

The win32 scope is not set when cross-compiling from Linux to Windows.

* qmake/mkspecs/features/functions.prf:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (128883 => 128884)


--- trunk/Tools/ChangeLog	2012-09-18 13:23:07 UTC (rev 128883)
+++ trunk/Tools/ChangeLog	2012-09-18 13:29:43 UTC (rev 128884)
@@ -1,3 +1,13 @@
+2012-09-18  Simon Hausmann  <[email protected]>
+
+        [Qt] Prospective Qt/Windows cross-compiling fix
+
+        Reviewed by Tor Arne Vestbø.
+
+        The win32 scope is not set when cross-compiling from Linux to Windows.
+
+        * qmake/mkspecs/features/functions.prf:
+
 2012-09-18  Seokju Kwon  <[email protected]>
 
         [EFL] Remove background view on EWebLauncher and MiniBrowser

Modified: trunk/Tools/qmake/mkspecs/features/functions.prf (128883 => 128884)


--- trunk/Tools/qmake/mkspecs/features/functions.prf	2012-09-18 13:23:07 UTC (rev 128883)
+++ trunk/Tools/qmake/mkspecs/features/functions.prf	2012-09-18 13:29:43 UTC (rev 128884)
@@ -369,7 +369,7 @@
 defineReplace(setEnvironmentVariable) {
   variable = $$1
   value = $$2
-  win32 {
+  win_cmd_shell {
       return((set \"$$variable=$$value\"))
   }
   return(export \"$$variable=$$value\")
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to