diff --git a/CHANGES b/CHANGES index 651af57024..809d53a94b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,6 @@ + 725. [bug] Installing man pages could fail. + 724. [func] New libisc functions isc_netaddr_any(), isc_netaddr_any6(). diff --git a/bin/check/Makefile.in b/bin/check/Makefile.in index c6a166d5be..aac4514c02 100644 --- a/bin/check/Makefile.in +++ b/bin/check/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.8 2001/02/02 18:53:00 sjacob Exp $ +# $Id: Makefile.in,v 1.9 2001/02/04 15:52:36 bwelling Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -64,4 +64,4 @@ installdirs: install:: named-checkconf named-checkzone installdirs ${LIBTOOL} ${INSTALL_PROGRAM} named-checkconf ${DESTDIR}${sbindir} ${LIBTOOL} ${INSTALL_PROGRAM} named-checkzone ${DESTDIR}${sbindir} - for m in ${MANPAGES}; do ${INSTALL_PROGRAM} $$m ${DESTDIR}${mandir}/man8; done + for m in ${MANPAGES}; do ${INSTALL_DATA} $$m ${DESTDIR}${mandir}/man8; done diff --git a/bin/dnssec/Makefile.in b/bin/dnssec/Makefile.in index cfce35aac2..31ec7ce3ac 100644 --- a/bin/dnssec/Makefile.in +++ b/bin/dnssec/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.16 2001/02/02 18:53:03 sjacob Exp $ +# $Id: Makefile.in,v 1.17 2001/02/04 15:52:38 bwelling Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -81,4 +81,4 @@ installdirs: install:: ${TARGETS} installdirs for t in ${TARGETS}; do ${LIBTOOL} ${INSTALL_PROGRAM} $$t ${DESTDIR}${sbindir}; done - for m in ${MANPAGES}; do ${INSTALL_PROGRAM} $$m ${DESTDIR}${mandir}/man8; done + for m in ${MANPAGES}; do ${INSTALL_DATA} $$m ${DESTDIR}${mandir}/man8; done diff --git a/bin/named/Makefile.in b/bin/named/Makefile.in index 3fe257b2bb..4b141d29c3 100644 --- a/bin/named/Makefile.in +++ b/bin/named/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.66 2001/02/01 23:22:13 sjacob Exp $ +# $Id: Makefile.in,v 1.67 2001/02/04 15:52:39 bwelling Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -103,4 +103,4 @@ installdirs: install:: named lwresd installdirs ${LIBTOOL} ${INSTALL_PROGRAM} named ${DESTDIR}${sbindir} (cd ${DESTDIR}${sbindir}; rm -f lwresd; @LN@ named lwresd) - for m in ${MANPAGES}; do ${INSTALL_PROGRAM} $$m ${DESTDIR}${mandir}/man8; done + for m in ${MANPAGES}; do ${INSTALL_DATA} $$m ${DESTDIR}${mandir}/man8; done diff --git a/bin/nsupdate/Makefile.in b/bin/nsupdate/Makefile.in index e7db680ed4..d3065004a1 100644 --- a/bin/nsupdate/Makefile.in +++ b/bin/nsupdate/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.12 2001/02/02 18:53:04 sjacob Exp $ +# $Id: Makefile.in,v 1.13 2001/02/04 15:52:40 bwelling Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -66,4 +66,4 @@ installdirs: install:: nsupdate installdirs ${LIBTOOL} ${INSTALL_PROGRAM} nsupdate ${DESTDIR}${bindir} - ${INSTALL_PROGRAM} nsupdate.8 ${DESTDIR}${mandir}/man8 + ${INSTALL_DATA} nsupdate.8 ${DESTDIR}${mandir}/man8 diff --git a/bin/rndc/Makefile.in b/bin/rndc/Makefile.in index 451b42c591..c7cad4c765 100644 --- a/bin/rndc/Makefile.in +++ b/bin/rndc/Makefile.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.17 2001/02/02 18:53:05 sjacob Exp $ +# $Id: Makefile.in,v 1.18 2001/02/04 15:52:41 bwelling Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -65,8 +65,8 @@ installdirs: install:: rndc installdirs ${LIBTOOL} ${INSTALL_PROGRAM} rndc ${DESTDIR}${sbindir} - ${INSTALL_PROGRAM} rndc.8 ${DESTDIR}${mandir}/man8 - ${INSTALL_PROGRAM} rndc.conf.5 ${DESTDIR}${mandir}/man5 + ${INSTALL_DATA} rndc.8 ${DESTDIR}${mandir}/man8 + ${INSTALL_DATA} rndc.conf.5 ${DESTDIR}${mandir}/man5 clean distclean:: rm -f ${TARGETS} diff --git a/lib/lwres/man/Makefile.in b/lib/lwres/man/Makefile.in index bb24e3642f..b3123d8d7e 100644 --- a/lib/lwres/man/Makefile.in +++ b/lib/lwres/man/Makefile.in @@ -54,4 +54,4 @@ installdirs: $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man3 install:: installdirs - for m in ${MANPAGES}; do ${INSTALL_PROGRAM} $$m ${DESTDIR}${mandir}/man3; done + for m in ${MANPAGES}; do ${INSTALL_DATA} $$m ${DESTDIR}${mandir}/man3; done