]> granicus.if.org Git - postgresql/commitdiff
Clean gettext-files file in clean target
authorPeter Eisentraut <peter_e@gmx.net>
Wed, 9 Nov 2011 18:56:19 +0000 (20:56 +0200)
committerPeter Eisentraut <peter_e@gmx.net>
Wed, 9 Nov 2011 18:56:19 +0000 (20:56 +0200)
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.

src/backend/nls.mk

index 297d1cb1902a3af5ba417d11105b975e92e3204a..a081293c6f196e63c60ae9cc47f804613cb62ac7 100644 (file)
@@ -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