From: Peter Eisentraut Date: Wed, 9 Nov 2011 18:56:19 +0000 (+0200) Subject: Clean gettext-files file in clean target X-Git-Tag: REL9_2_BETA1~847 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ad2c8e1681ba34a7b764a356489fdc580dc553c;p=postgresql Clean gettext-files file in clean target It used to be cleaned in maintainer-clean, but that is inconsistent with other cleaning of NLS files in nls-global.mk, and it's also wrong overall, because it's not part of the distribution tarball, which is the base definition of the maintainer-clean target. --- diff --git a/src/backend/nls.mk b/src/backend/nls.mk index 297d1cb190..a081293c6f 100644 --- a/src/backend/nls.mk +++ b/src/backend/nls.mk @@ -14,8 +14,8 @@ GETTEXT_FLAGS = $(BACKEND_COMMON_GETTEXT_FLAGS) \ gettext-files: distprep find $(srcdir)/ $(srcdir)/../port/ -name '*.c' -print >$@ -my-maintainer-clean: +my-clean: rm -f gettext-files -.PHONY: my-maintainer-clean -maintainer-clean: my-maintainer-clean +.PHONY: my-clean +clean: my-clean