Title: [151325] trunk
Revision
151325
Author
[email protected]
Date
2013-06-07 10:15:29 -0700 (Fri, 07 Jun 2013)

Log Message

[regression] build failure WebKitFontFamilyNames.h missing
https://bugs.webkit.org/show_bug.cgi?id=117178

Reviewed by Sam Weinig.

.: 

* GNUmakefile.am: List platform_sources under the BUILT_SOURCES list.

Source/WebCore: 

* GNUmakefile.am: Make libPlatform and other sources depend on the generated platform sources. This should prevent
build failures in source code that's depending on the generated platform sources.

Modified Paths

Diff

Modified: trunk/ChangeLog (151324 => 151325)


--- trunk/ChangeLog	2013-06-07 16:37:32 UTC (rev 151324)
+++ trunk/ChangeLog	2013-06-07 17:15:29 UTC (rev 151325)
@@ -1,3 +1,12 @@
+2013-06-07  Zan Dobersek  <[email protected]>
+
+        [regression] build failure WebKitFontFamilyNames.h missing
+        https://bugs.webkit.org/show_bug.cgi?id=117178
+
+        Reviewed by Sam Weinig.
+
+        * GNUmakefile.am: List platform_sources under the BUILT_SOURCES list.
+
 2013-06-05  Bear Travis  <[email protected]>
 
         [CSS Exclusions][CSS Shapes] Split CSS Exclusions & Shapes compile & runtime flags

Modified: trunk/GNUmakefile.am (151324 => 151325)


--- trunk/GNUmakefile.am	2013-06-07 16:37:32 UTC (rev 151324)
+++ trunk/GNUmakefile.am	2013-06-07 17:15:29 UTC (rev 151325)
@@ -215,6 +215,7 @@
 BUILT_SOURCES += \
 	$(_javascript_core_built_sources) \
 	$(_javascript_core_built_nosources) \
+	$(platform_built_sources) \
 	$(webcore_built_sources) \
 	$(webcore_built_nosources) \
 	$(webcore_svg_built_sources) \

Modified: trunk/Source/WebCore/ChangeLog (151324 => 151325)


--- trunk/Source/WebCore/ChangeLog	2013-06-07 16:37:32 UTC (rev 151324)
+++ trunk/Source/WebCore/ChangeLog	2013-06-07 17:15:29 UTC (rev 151325)
@@ -1,3 +1,13 @@
+2013-06-07  Zan Dobersek  <[email protected]>
+
+        [regression] build failure WebKitFontFamilyNames.h missing
+        https://bugs.webkit.org/show_bug.cgi?id=117178
+
+        Reviewed by Sam Weinig.
+
+        * GNUmakefile.am: Make libPlatform and other sources depend on the generated platform sources. This should prevent
+        build failures in source code that's depending on the generated platform sources.
+
 2013-06-07  Chris Fleizach  <[email protected]>
 
         MathML line fraction needs to parse number values

Modified: trunk/Source/WebCore/GNUmakefile.am (151324 => 151325)


--- trunk/Source/WebCore/GNUmakefile.am	2013-06-07 16:37:32 UTC (rev 151324)
+++ trunk/Source/WebCore/GNUmakefile.am	2013-06-07 17:15:29 UTC (rev 151325)
@@ -433,7 +433,7 @@
 # IDL generation takes a long time. The pipe represents an order-only dependency,
 # which means that GNUmake will only try to build the dependencies first, but
 # not rebuild all the targets if the dependencies change.
-$(webkitgtk_sources) $(webkit2_sources) $(webkit2_plugin_process_sources) $(webcore_sources) $(webcoregtk_sources) $(platformgtk_sources) : | $(supplemental_dependency_file) $(window_constructors_file) $(workercontext_constructors_file) $(webcore_built_sources)
+$(webkitgtk_sources) $(webkit2_sources) $(webkit2_plugin_process_sources) $(webcore_sources) $(webcoregtk_sources) $(platform_sources) $(platformgtk_sources) : | $(supplemental_dependency_file) $(window_constructors_file) $(workercontext_constructors_file) $(webcore_built_sources) $(platform_built_sources)
 
 noinst_LTLIBRARIES += \
 	libWebCorePlatform.la \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to