Title: [167976] trunk/Source/WebCore
Revision
167976
Author
commit-qu...@webkit.org
Date
2014-04-29 18:53:53 -0700 (Tue, 29 Apr 2014)

Log Message

[GTK][cmake] CMake variable (non)expansion causing 'File name too long' build error.
https://bugs.webkit.org/show_bug.cgi?id=132244

Patch by Nikos Andronikos <nikos.andronikos-web...@cisra.canon.com.au> on 2014-04-29
Reviewed by Martin Robinson.

Removing quotes around include directory variable ${WebCore_INCLUDE_DIRECTORIES} in
the include_directories cmake macro enables the variable to be expanded correctly.

No tests created as this fixes a platform specific build issue.

* PlatformGTK.cmake:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (167975 => 167976)


--- trunk/Source/WebCore/ChangeLog	2014-04-30 01:09:52 UTC (rev 167975)
+++ trunk/Source/WebCore/ChangeLog	2014-04-30 01:53:53 UTC (rev 167976)
@@ -1,3 +1,17 @@
+2014-04-29  Nikos Andronikos  <nikos.andronikos-web...@cisra.canon.com.au>
+
+        [GTK][cmake] CMake variable (non)expansion causing 'File name too long' build error.
+        https://bugs.webkit.org/show_bug.cgi?id=132244
+
+        Reviewed by Martin Robinson.
+
+        Removing quotes around include directory variable ${WebCore_INCLUDE_DIRECTORIES} in
+        the include_directories cmake macro enables the variable to be expanded correctly.
+
+        No tests created as this fixes a platform specific build issue.
+
+        * PlatformGTK.cmake:
+
 2014-04-29  Brent Fulgham  <bfulg...@apple.com>
 
         Unreviewed test fix after r167962.

Modified: trunk/Source/WebCore/PlatformGTK.cmake (167975 => 167976)


--- trunk/Source/WebCore/PlatformGTK.cmake	2014-04-30 01:09:52 UTC (rev 167975)
+++ trunk/Source/WebCore/PlatformGTK.cmake	2014-04-30 01:53:53 UTC (rev 167976)
@@ -445,7 +445,7 @@
 )
 
 include_directories(
-    "${WebCore_INCLUDE_DIRECTORIES}"
+    ${WebCore_INCLUDE_DIRECTORIES}
     "${DERIVED_SOURCES_DIR}"
     "${DERIVED_SOURCES_GOBJECT_DOM_BINDINGS_DIR}"
 )
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to