Title: [88185] trunk
Revision
88185
Author
[email protected]
Date
2011-06-06 13:18:58 -0700 (Mon, 06 Jun 2011)

Log Message

2011-06-06  Martin Robinson  <[email protected]>

        Fix the GTK+ build by ensuring that the autogenerated sources
        necessary for libWebCoreInternals are recorded in a predeclared
        variable before assigning to BUILT_SOURCES.

        * GNUmakefile.am: Assign libWebCoreInternals built sources to
        libwebcoreinternals_built_sources before adding to the source list
        and to BUILT_SOURCES.
2011-06-06  Martin Robinson  <[email protected]>

        Fix the GTK+ build by ensuring that the autogenerated sources
        necessary for libWebCoreInternals are recorded in a predeclared
        variable before assigning to BUILT_SOURCES.

        * GNUmakefile.am: Predeclare libwebcoreinternals_built_sources.

Modified Paths

Diff

Modified: trunk/ChangeLog (88184 => 88185)


--- trunk/ChangeLog	2011-06-06 20:14:35 UTC (rev 88184)
+++ trunk/ChangeLog	2011-06-06 20:18:58 UTC (rev 88185)
@@ -1,3 +1,13 @@
+2011-06-06  Martin Robinson  <[email protected]>
+
+        Fix the GTK+ build by ensuring that the autogenerated sources
+        necessary for libWebCoreInternals are recorded in a predeclared
+        variable before assigning to BUILT_SOURCES.
+
+        * GNUmakefile.am: Assign libWebCoreInternals built sources to
+        libwebcoreinternals_built_sources before adding to the source list
+        and to BUILT_SOURCES.
+
 2011-06-06  Carlos Garcia Campos  <[email protected]>
 
         Unreviewed. Fix the GTK+ build.

Modified: trunk/GNUmakefile.am (88184 => 88185)


--- trunk/GNUmakefile.am	2011-06-06 20:14:35 UTC (rev 88184)
+++ trunk/GNUmakefile.am	2011-06-06 20:18:58 UTC (rev 88185)
@@ -73,6 +73,7 @@
 webkitgtk_built_sources :=
 webkitgtk_built_nosources :=
 webkit2_built_sources :=
+libwebcoreinternals_built_sources :=
 global_cppflags :=
 global_cflags :=
 global_cxxflags :=

Modified: trunk/Tools/ChangeLog (88184 => 88185)


--- trunk/Tools/ChangeLog	2011-06-06 20:14:35 UTC (rev 88184)
+++ trunk/Tools/ChangeLog	2011-06-06 20:18:58 UTC (rev 88185)
@@ -1,3 +1,11 @@
+2011-06-06  Martin Robinson  <[email protected]>
+
+        Fix the GTK+ build by ensuring that the autogenerated sources
+        necessary for libWebCoreInternals are recorded in a predeclared
+        variable before assigning to BUILT_SOURCES.
+
+        * GNUmakefile.am: Predeclare libwebcoreinternals_built_sources.
+
 2011-06-06  Yong Li  <[email protected]>
 
         Reviewed by Eric Seidel.

Modified: trunk/Tools/GNUmakefile.am (88184 => 88185)


--- trunk/Tools/GNUmakefile.am	2011-06-06 20:14:35 UTC (rev 88184)
+++ trunk/Tools/GNUmakefile.am	2011-06-06 20:18:58 UTC (rev 88185)
@@ -47,10 +47,11 @@
 	Source/WebCore/testing/js/WebCoreTestSupport.cpp \
 	Source/WebCore/testing/js/WebCoreTestSupport.h
 
-nodist_libWebCoreInternals_la_SOURCES = \
+libwebcoreinternals_built_sources += \
 	DerivedSources/WebCore/JSInternals.cpp \
 	DerivedSources/WebCore/JSInternals.h
-BUILT_SOURCES += $(nodist_libWebCoreInternals_la_SOURCES)
+nodist_libWebCoreInternals_la_SOURCES = $(libwebcoreinternals_built_sources)
+BUILT_SOURCES += $(libwebcoreinternals_built_sources)
 
 libWebCoreInternals_la_CPPFLAGS = \
 	$(global_cppflags) \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to