diff options
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile.in.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index ea364c4c1..9c1ebf5c6 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -7,6 +7,7 @@ # Please note that the actual code is *not* freely available. PACKAGE = @PACKAGE@ +LIBNAME = @LIBNAME@ VERSION = @VERSION@ # These two variables depend on the location of this directory. @@ -110,12 +111,12 @@ install-data-yes: all dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ if test -r $$cat; then \ - $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \ - echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE).mo"; \ + $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(LIBNAME).mo; \ + echo "installing $$cat as $(DESTDIR)$$dir/$(LIBNAME).mo"; \ elif test -r $(srcdir)/$$cat; then \ - $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \ + $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(LIBNAME).mo; \ echo "installing $(srcdir)/$$cat as" \ - "$(DESTDIR)$$dir/$(PACKAGE).mo"; \ + "$(DESTDIR)$$dir/$(LIBNAME).mo"; \ else \ echo "WARNING: compiled message file $$cat is missing"; \ fi; \ |