diff options
author | Bruno Haible <bruno@clisp.org> | 2001-08-02 13:23:32 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2001-08-02 13:23:32 +0000 |
commit | 860a3c9bf420cf3e19103d35646e38557a6f1ea3 (patch) | |
tree | 11810c97f25515a5b7f2c62242e1d3e8d0d4714f /po/Makefile.in.in | |
parent | f9691a073563290612ad7b7ce095329038475751 (diff) | |
download | external_gettext-860a3c9bf420cf3e19103d35646e38557a6f1ea3.zip external_gettext-860a3c9bf420cf3e19103d35646e38557a6f1ea3.tar.gz external_gettext-860a3c9bf420cf3e19103d35646e38557a6f1ea3.tar.bz2 |
Don't use @CATALOGS@ if NLS is disabled.
Diffstat (limited to 'po/Makefile.in.in')
-rw-r--r-- | po/Makefile.in.in | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 3a538ee..2636ea8 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -124,18 +124,22 @@ install-data-yes: all # Define this as empty until I found a useful application. installcheck: -uninstall: +uninstall: uninstall-exec uninstall-data +uninstall-exec: +uninstall-data: uninstall-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext"; then \ + rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ + else \ + : ; \ + fi +uninstall-data-no: +uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed 's/\.gmo$$//'`; \ rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo; \ done - if test "$(PACKAGE)" = "gettext"; then \ - rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ - else \ - : ; \ - fi check: all |