Title: [150073] trunk/Source
Revision
150073
Author
zandober...@gmail.com
Date
2013-05-14 10:31:35 -0700 (Tue, 14 May 2013)

Log Message

[GTK] libPlatform, libPlatformGtk must depend on the related GNUmakefiles
https://bugs.webkit.org/show_bug.cgi?id=115937

Reviewed by Martin Robinson.

Source/Platform: 

* GNUmakefile.am: Set up an artifical dependency so that libPlatform and libPlatformGtk
libraries take into account any changes in this GNUmakefile.am and the GNUmakefile.list.am
located under Source/WebCore. The latter is included due to all the build targets for the
two libraries being listed there.

Source/WebCore: 

No new tests - no new functionality.

* GNUmakefile.am: Fix typos in two libraries' names - Webcore -> WebCore.

Modified Paths

Diff

Modified: trunk/Source/Platform/ChangeLog (150072 => 150073)


--- trunk/Source/Platform/ChangeLog	2013-05-14 16:52:30 UTC (rev 150072)
+++ trunk/Source/Platform/ChangeLog	2013-05-14 17:31:35 UTC (rev 150073)
@@ -1,3 +1,15 @@
+2013-05-14  Zan Dobersek  <zdober...@igalia.com>
+
+        [GTK] libPlatform, libPlatformGtk must depend on the related GNUmakefiles
+        https://bugs.webkit.org/show_bug.cgi?id=115937
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.am: Set up an artifical dependency so that libPlatform and libPlatformGtk
+        libraries take into account any changes in this GNUmakefile.am and the GNUmakefile.list.am
+        located under Source/WebCore. The latter is included due to all the build targets for the
+        two libraries being listed there.
+
 2013-05-06  Zan Dobersek  <zdober...@igalia.com>
 
         [GTK] Move GeolocationProviderGeoclue into libPlatform

Modified: trunk/Source/Platform/GNUmakefile.am (150072 => 150073)


--- trunk/Source/Platform/GNUmakefile.am	2013-05-14 16:52:30 UTC (rev 150072)
+++ trunk/Source/Platform/GNUmakefile.am	2013-05-14 17:31:35 UTC (rev 150073)
@@ -48,6 +48,13 @@
 	libPlatform.la \
 	libPlatformGtk.la
 
+# Artificial dependencies to try to force a relink of the Platform libraries when their makefile changes.
+platform_lib_for_dep = libPlatform.la
+$(platform_lib_for_dep): $(srcdir)/Source/Platform/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am
+
+platformgtk_lib_for_dep = libPlatformGtk.la
+$(platformgtk_lib_for_dep): $(srcdir)/Source/Platform/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am
+
 libPlatform_la_SOURCES = \
 	$(platform_sources)
 

Modified: trunk/Source/WebCore/ChangeLog (150072 => 150073)


--- trunk/Source/WebCore/ChangeLog	2013-05-14 16:52:30 UTC (rev 150072)
+++ trunk/Source/WebCore/ChangeLog	2013-05-14 17:31:35 UTC (rev 150073)
@@ -1,3 +1,14 @@
+2013-05-14  Zan Dobersek  <zdober...@igalia.com>
+
+        [GTK] libPlatform, libPlatformGtk must depend on the related GNUmakefiles
+        https://bugs.webkit.org/show_bug.cgi?id=115937
+
+        Reviewed by Martin Robinson.
+
+        No new tests - no new functionality.
+
+        * GNUmakefile.am: Fix typos in two libraries' names - Webcore -> WebCore.
+
 2013-05-13  Ryosuke Niwa  <rn...@webkit.org>
 
         Removing Attr can delete a wrong Attribute in ElementData

Modified: trunk/Source/WebCore/GNUmakefile.am (150072 => 150073)


--- trunk/Source/WebCore/GNUmakefile.am	2013-05-14 16:52:30 UTC (rev 150072)
+++ trunk/Source/WebCore/GNUmakefile.am	2013-05-14 17:31:35 UTC (rev 150073)
@@ -450,15 +450,14 @@
 	libWebCoreSVG.la
 endif
 
-# Artificial dependency to try to force a relink of the WebCore libraries
-# When their makefiles change.
+# Artificial dependencies to try to force a relink of the WebCore libraries when their makefiles change.
 webcore_lib_for_dep = libWebCore.la
 $(webcore_lib_for_dep): $(srcdir)/Source/WebCore/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am $(srcdir)/Source/autotools/symbols.filter
 
-webcoremodules_lib_for_dep = libWebcoreModules.la
+webcoremodules_lib_for_dep = libWebCoreModules.la
 $(webcoremodules_lib_for_dep): $(srcdir)/Source/WebCore/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am
 
-webcoreplatform_lib_for_dep = libWebcorePlatform.la
+webcoreplatform_lib_for_dep = libWebCorePlatform.la
 $(webcoreplatform_lib_for_dep): $(srcdir)/Source/WebCore/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am
 
 webcoresvg_lib_for_dep = libWebCoreSVG.la
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to