diff --git a/ChangeLog b/ChangeLog index e1912eb45..fb1b100fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-05-15 Moritz Bunkus + + * 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 * Released v3.4.0. diff --git a/Makefile.in b/Makefile.in index 86df0b3d2..45c90b853 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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; \