2011-09-26 Alejandro G. Castro <alex@igalia.com>
authoralex@webkit.org <alex@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 26 Sep 2011 21:44:11 +0000 (21:44 +0000)
committeralex@webkit.org <alex@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 26 Sep 2011 21:44:11 +0000 (21:44 +0000)
        [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  <alex@igalia.com>

        [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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95996 268f45cc-cd09-0410-ab3c-d52691b4dbfc

ChangeLog
GNUmakefile.am
Source/WebKit/gtk/po/ChangeLog
Source/WebKit/gtk/po/GNUmakefile.am

index b6a800c..dd151c0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2011-09-26  Alejandro G. Castro  <alex@igalia.com>
+
+        [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  <kubo@profusion.mobi>
 
         [CMake] Detect the operating system in a more generic way.
index d21f7ee..8131048 100644 (file)
@@ -89,6 +89,7 @@ typelibs_DATA :=
 EXTRA_DIST :=
 BUILT_SOURCES :=
 CLEANFILES :=
+DOMAIN :=
 DISTCLEANFILES :=
 MAINTAINERCLEANFILES :=
 pkgconfig_DATA :=
index 9aa224f..496819b 100644 (file)
@@ -1,3 +1,14 @@
+2011-09-26  Alejandro G. Castro  <alex@igalia.com>
+
+        [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  <cgarcia@igalia.com>
 
         [GTK] WebProcess shouldn't use the GTK+ API
index 7be5063..96e098d 100644 (file)
@@ -15,7 +15,7 @@
 #
 # Origin: gettext-0.17
 
-DOMAIN := $(GETTEXT_PACKAGE)
+DOMAIN += $(GETTEXT_PACKAGE)
 
 MSGFMT := $(shell which msgfmt)