Title: [95996] trunk
Revision
95996
Author
[email protected]
Date
2011-09-26 14:44:11 -0700 (Mon, 26 Sep 2011)

Log Message

2011-09-26  Alejandro G. Castro  <[email protected]>

        [GTK] pot file is not properly remove during distcheck
        https://bugs.webkit.org/show_bug.cgi?id=68797

        Defined DOMAIN variable before DISTCLEANFILES because we are using
        it there to identify the .pot file.

        Reviewed by Martin Robinson.

        * GNUmakefile.am:

2011-09-26  Alejandro G. Castro  <[email protected]>

        [GTK] pot file is not properly remove during distcheck
        https://bugs.webkit.org/show_bug.cgi?id=68797

        DOMAIN is already defined, we just add the value to the variable.

        Reviewed by Martin Robinson.

        * GNUmakefile.am:

Modified Paths

Diff

Modified: trunk/ChangeLog (95995 => 95996)


--- trunk/ChangeLog	2011-09-26 21:39:02 UTC (rev 95995)
+++ trunk/ChangeLog	2011-09-26 21:44:11 UTC (rev 95996)
@@ -1,3 +1,15 @@
+2011-09-26  Alejandro G. Castro  <[email protected]>
+
+        [GTK] pot file is not properly remove during distcheck
+        https://bugs.webkit.org/show_bug.cgi?id=68797
+
+        Defined DOMAIN variable before DISTCLEANFILES because we are using
+        it there to identify the .pot file.
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.am:
+
 2011-09-26  Raphael Kubo da Costa  <[email protected]>
 
         [CMake] Detect the operating system in a more generic way.

Modified: trunk/GNUmakefile.am (95995 => 95996)


--- trunk/GNUmakefile.am	2011-09-26 21:39:02 UTC (rev 95995)
+++ trunk/GNUmakefile.am	2011-09-26 21:44:11 UTC (rev 95996)
@@ -89,6 +89,7 @@
 EXTRA_DIST :=
 BUILT_SOURCES :=
 CLEANFILES :=
+DOMAIN :=
 DISTCLEANFILES :=
 MAINTAINERCLEANFILES :=
 pkgconfig_DATA :=

Modified: trunk/Source/WebKit/gtk/po/ChangeLog (95995 => 95996)


--- trunk/Source/WebKit/gtk/po/ChangeLog	2011-09-26 21:39:02 UTC (rev 95995)
+++ trunk/Source/WebKit/gtk/po/ChangeLog	2011-09-26 21:44:11 UTC (rev 95996)
@@ -1,3 +1,14 @@
+2011-09-26  Alejandro G. Castro  <[email protected]>
+
+        [GTK] pot file is not properly remove during distcheck
+        https://bugs.webkit.org/show_bug.cgi?id=68797
+
+        DOMAIN is already defined, we just add the value to the variable.
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.am:
+
 2011-09-20  Carlos Garcia Campos  <[email protected]>
 
         [GTK] WebProcess shouldn't use the GTK+ API

Modified: trunk/Source/WebKit/gtk/po/GNUmakefile.am (95995 => 95996)


--- trunk/Source/WebKit/gtk/po/GNUmakefile.am	2011-09-26 21:39:02 UTC (rev 95995)
+++ trunk/Source/WebKit/gtk/po/GNUmakefile.am	2011-09-26 21:44:11 UTC (rev 95996)
@@ -15,7 +15,7 @@
 #
 # Origin: gettext-0.17
 
-DOMAIN := $(GETTEXT_PACKAGE)
+DOMAIN += $(GETTEXT_PACKAGE)
 
 MSGFMT := $(shell which msgfmt)
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to