mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Avoid error from mkdir if no languages are to be installed
mkinstalldirs used to handle no arguments, but mkdir doesn't. Also remove the .SILENT setting, that was previously removed from Makefile.global as well.
This commit is contained in:
parent
4cb7536c6b
commit
74d770a895
@ -1,4 +1,4 @@
|
|||||||
# $PostgreSQL: pgsql/src/nls-global.mk,v 1.21 2009/08/26 22:24:42 petere Exp $
|
# $PostgreSQL: pgsql/src/nls-global.mk,v 1.22 2010/05/13 14:35:28 petere Exp $
|
||||||
|
|
||||||
# Common rules for Native Language Support (NLS)
|
# Common rules for Native Language Support (NLS)
|
||||||
#
|
#
|
||||||
@ -72,10 +72,10 @@ ifneq (,$(LANGUAGES))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
installdirs-po:
|
installdirs-po:
|
||||||
$(MKDIR_P) $(foreach lang, $(LANGUAGES), '$(DESTDIR)$(localedir)'/$(lang)/LC_MESSAGES)
|
$(if $(LANGUAGES),$(MKDIR_P) $(foreach lang, $(LANGUAGES), '$(DESTDIR)$(localedir)'/$(lang)/LC_MESSAGES),:)
|
||||||
|
|
||||||
uninstall-po:
|
uninstall-po:
|
||||||
rm -f $(foreach lang, $(LANGUAGES), '$(DESTDIR)$(localedir)'/$(lang)/LC_MESSAGES/$(CATALOG_NAME)$(SO_MAJOR_VERSION)-$(MAJORVERSION).mo)
|
$(if $(LANGUAGES),rm -f $(foreach lang, $(LANGUAGES), '$(DESTDIR)$(localedir)'/$(lang)/LC_MESSAGES/$(CATALOG_NAME)$(SO_MAJOR_VERSION)-$(MAJORVERSION).mo),:)
|
||||||
|
|
||||||
|
|
||||||
clean-po:
|
clean-po:
|
||||||
@ -130,4 +130,3 @@ maintainer-check: maintainer-check-po
|
|||||||
|
|
||||||
.PHONY: all-po install-po installdirs-po uninstall-po clean-po \
|
.PHONY: all-po install-po installdirs-po uninstall-po clean-po \
|
||||||
maintainer-check-po init-po update-po
|
maintainer-check-po init-po update-po
|
||||||
.SILENT: installdirs-po
|
|
||||||
|
Loading…
Reference in New Issue
Block a user