From: alex@webkit.org Date: Mon, 26 Sep 2011 21:44:11 +0000 (+0000) Subject: 2011-09-26 Alejandro G. Castro X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=4509a4c44aa150cffa10a21e12ed8a20188f43ec 2011-09-26 Alejandro G. Castro [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 [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: https://svn.webkit.org/repository/webkit/trunk@95996 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/ChangeLog b/ChangeLog index b6a800c..dd151c0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2011-09-26 Alejandro G. Castro + + [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 [CMake] Detect the operating system in a more generic way. diff --git a/GNUmakefile.am b/GNUmakefile.am index d21f7ee..8131048 100644 --- a/GNUmakefile.am +++ b/GNUmakefile.am @@ -89,6 +89,7 @@ typelibs_DATA := EXTRA_DIST := BUILT_SOURCES := CLEANFILES := +DOMAIN := DISTCLEANFILES := MAINTAINERCLEANFILES := pkgconfig_DATA := diff --git a/Source/WebKit/gtk/po/ChangeLog b/Source/WebKit/gtk/po/ChangeLog index 9aa224f..496819b 100644 --- a/Source/WebKit/gtk/po/ChangeLog +++ b/Source/WebKit/gtk/po/ChangeLog @@ -1,3 +1,14 @@ +2011-09-26 Alejandro G. Castro + + [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 [GTK] WebProcess shouldn't use the GTK+ API diff --git a/Source/WebKit/gtk/po/GNUmakefile.am b/Source/WebKit/gtk/po/GNUmakefile.am index 7be5063e..96e098d 100644 --- a/Source/WebKit/gtk/po/GNUmakefile.am +++ b/Source/WebKit/gtk/po/GNUmakefile.am @@ -15,7 +15,7 @@ # # Origin: gettext-0.17 -DOMAIN := $(GETTEXT_PACKAGE) +DOMAIN += $(GETTEXT_PACKAGE) MSGFMT := $(shell which msgfmt)