Title: [121339] trunk/Tools
Revision
121339
Author
[email protected]
Date
2012-06-27 06:05:43 -0700 (Wed, 27 Jun 2012)

Log Message

[Qt] Fix lookup location for sqlite sources

Don't look in the install dir - we are unlikely to find anything there
unless we are doing a developer build.

Patch by Oswald Buddenhagen <[email protected]> on 2012-06-27
Reviewed by Tor Arne Vestbø.

* qmake/mkspecs/features/features.prf:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (121338 => 121339)


--- trunk/Tools/ChangeLog	2012-06-27 13:02:03 UTC (rev 121338)
+++ trunk/Tools/ChangeLog	2012-06-27 13:05:43 UTC (rev 121339)
@@ -1,3 +1,14 @@
+2012-06-27  Oswald Buddenhagen  <[email protected]>
+
+        [Qt] Fix lookup location for sqlite sources
+
+        Don't look in the install dir - we are unlikely to find anything there
+        unless we are doing a developer build.
+
+        Reviewed by Tor Arne Vestbø.
+
+        * qmake/mkspecs/features/features.prf:
+
 2012-06-27  Zan Dobersek  <[email protected]>
 
         [Gtk] Add support for the Gamepad API

Modified: trunk/Tools/qmake/mkspecs/features/features.prf (121338 => 121339)


--- trunk/Tools/qmake/mkspecs/features/features.prf	2012-06-27 13:02:03 UTC (rev 121338)
+++ trunk/Tools/qmake/mkspecs/features/features.prf	2012-06-27 13:05:43 UTC (rev 121339)
@@ -23,7 +23,7 @@
 # Try to locate sqlite3 source
 SQLITE3SRCDIR = $$(SQLITE3SRCDIR)
 isEmpty(SQLITE3SRCDIR) {
-    SQLITE3SRCDIR = $$[QT_INSTALL_PREFIX]/src/3rdparty/sqlite/
+    SQLITE3SRCDIR = $$QT.core.sources/../3rdparty/sqlite/
 }
 
 # ---------- Dynamically detect optional features -------------
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to