From: Bruno Haible Date: Tue, 2 Dec 2003 20:39:13 +0000 (+0000) Subject: Install the manual page for envsubst also on Windows and VMS. X-Git-Tag: v0.13.1~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4570864cf2bd5eb50960452dba2bd1972d41dd5;p=thirdparty%2Fgettext.git Install the manual page for envsubst also on Windows and VMS. --- diff --git a/gettext-runtime/man/ChangeLog b/gettext-runtime/man/ChangeLog index 0d51ec24b..67f42d42b 100644 --- a/gettext-runtime/man/ChangeLog +++ b/gettext-runtime/man/ChangeLog @@ -1,3 +1,10 @@ +2003-11-30 Bruno Haible + + * Makefile.msvc (install): Install also envsubst.1, envsubst.1.html. + (uninstall): Uninstall also envsubst.1, envsubst.1.html. + * Makefile.vms (install): Install also envsubst.1, envsubst.1.html. + (uninstall): Uninstall also envsubst.1, envsubst.1.html. + 2003-11-30 Bruno Haible * gettext-0.13 released. diff --git a/gettext-runtime/man/Makefile.msvc b/gettext-runtime/man/Makefile.msvc index 97e78183d..3f87646e4 100644 --- a/gettext-runtime/man/Makefile.msvc +++ b/gettext-runtime/man/Makefile.msvc @@ -37,6 +37,7 @@ install : all force -mkdir $(man1dir) $(INSTALL_DATA) gettext.1.in $(man1dir)\gettext.1 $(INSTALL_DATA) ngettext.1.in $(man1dir)\ngettext.1 + $(INSTALL_DATA) envsubst.1 $(man1dir)\envsubst.1 -mkdir $(man3dir) $(INSTALL_DATA) gettext.3 $(man3dir)\gettext.3 $(INSTALL_DATA) ngettext.3 $(man3dir)\ngettext.3 @@ -51,6 +52,7 @@ install : all force -mkdir $(docdir) $(INSTALL_DATA) gettext.1.html.in $(docdir)\gettext.1.html $(INSTALL_DATA) ngettext.1.html.in $(docdir)\ngettext.1.html + $(INSTALL_DATA) envsubst.1.html $(docdir)\envsubst.1.html $(INSTALL_DATA) gettext.3.html $(docdir)\gettext.3.html $(INSTALL_DATA) ngettext.3.html $(docdir)\ngettext.3.html $(INSTALL_DATA) textdomain.3.html $(docdir)\textdomain.3.html @@ -69,6 +71,7 @@ installdirs : force uninstall : force $(RM) $(man1dir)\gettext.1 $(RM) $(man1dir)\ngettext.1 + $(RM) $(man1dir)\envsubst.1 $(RM) $(man3dir)\gettext.3 $(RM) $(man3dir)\ngettext.3 $(RM) $(man3dir)\textdomain.3 @@ -80,6 +83,7 @@ uninstall : force $(RM) $(man3dir)\dcngettext.3 $(RM) $(docdir)\gettext.1.html $(RM) $(docdir)\ngettext.1.html + $(RM) $(docdir)\envsubst.1.html $(RM) $(docdir)\gettext.3.html $(RM) $(docdir)\ngettext.3.html $(RM) $(docdir)\textdomain.3.html diff --git a/gettext-runtime/man/Makefile.vms b/gettext-runtime/man/Makefile.vms index 1cba56929..0cf75a189 100644 --- a/gettext-runtime/man/Makefile.vms +++ b/gettext-runtime/man/Makefile.vms @@ -30,6 +30,7 @@ install : all create /directory $(man1dir)] $(INSTALL_DATA) gettext.1.in $(man1dir)]gettext.1 $(INSTALL_DATA) ngettext.1.in $(man1dir)]ngettext.1 + $(INSTALL_DATA) envsubst.1 $(man1dir)]envsubst.1 create /directory $(man3dir)] $(INSTALL_DATA) gettext.3 $(man3dir)]gettext.3 $(INSTALL_DATA) ngettext.3 $(man3dir)]ngettext.3 @@ -44,6 +45,7 @@ install : all create /directory $(docdir)] $(INSTALL_DATA) gettext.1.html.in $(docdir)]gettext.1.html $(INSTALL_DATA) ngettext.1.html.in $(docdir)]ngettext.1.html + $(INSTALL_DATA) envsubst.1.html $(docdir)]envsubst.1.html $(INSTALL_DATA) gettext.3.html $(docdir)]gettext.3.html $(INSTALL_DATA) ngettext.3.html $(docdir)]ngettext.3.html $(INSTALL_DATA) textdomain.3.html $(docdir)]textdomain.3.html @@ -62,6 +64,7 @@ installdirs : uninstall : $(RM) $(man1dir)]gettext.1; $(RM) $(man1dir)]ngettext.1; + $(RM) $(man1dir)]envsubst.1; $(RM) $(man3dir)]gettext.3; $(RM) $(man3dir)]ngettext.3; $(RM) $(man3dir)]textdomain.3; @@ -73,6 +76,7 @@ uninstall : $(RM) $(man3dir)]dcngettext.3; $(RM) $(docdir)]gettext.1.html; $(RM) $(docdir)]ngettext.1.html; + $(RM) $(docdir)]envsubst.1.html; $(RM) $(docdir)]gettext.3.html; $(RM) $(docdir)]ngettext.3.html; $(RM) $(docdir)]textdomain.3.html;