Install the proper man page translations instead of the English originals

This commit is contained in:
Moritz Bunkus 2010-05-15 22:19:28 +02:00
parent 1fd093aecb
commit 335066033a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2010-05-15 Moritz Bunkus <moritz@bunkus.org>
* Build system: bug fix: The man page installation process only
installed the English originals instead of the Japanese and
Chinese translations.
2010-05-14 Moritz Bunkus <moritz@bunkus.org>
* Released v3.4.0.

View File

@ -272,6 +272,7 @@ install-translated-mans:
$(mkinstalldirs) $(DESTDIR)$(mandir)/$$lang/man1; \
for manpage in $(MANPAGES); do \
inst=`echo $$manpage | sed -e 's/^.*\///'`; \
manpage=`echo $$manpage | sed -e "s/doc\/man/doc\/man\/$$lang/"`; \
echo " $(INSTALL_DATA) $$manpage $(DESTDIR)$(mandir)/$$lang/man1/$$inst"; \
$(INSTALL_DATA) $$manpage $(DESTDIR)$(mandir)/$$lang/man1/$$inst; \
done; \