]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1716. [doc] named.conf(5) was being installed in the wrong
authorMark Andrews <marka@isc.org>
Mon, 6 Sep 2004 21:53:34 +0000 (21:53 +0000)
committerMark Andrews <marka@isc.org>
Mon, 6 Sep 2004 21:53:34 +0000 (21:53 +0000)
                        location.  [RT# 12441]

CHANGES
bin/named/Makefile.in

diff --git a/CHANGES b/CHANGES
index 2be54dfc0ec46a2b24f47198030bdb0e76c6e032..32c748704895cd7525936baf92577b13150fd603 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+1716.  [doc]           named.conf(5) was being installed in the wrong
+                       location.  [RT# 12441]
+
 1715.  [placeholder]   rt11681
 
 1714.  [bug]           dig/host/nslookup were only trying the first
index 7109995f7329e58938d13fec27ea61b93368003a..8d38e141374597fe77aca0cea0d03924ea06973c 100644 (file)
@@ -13,7 +13,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: Makefile.in,v 1.83 2004/08/20 22:01:22 marka Exp $
+# $Id: Makefile.in,v 1.84 2004/09/06 21:53:34 marka Exp $
 
 srcdir =       @srcdir@
 VPATH =                @srcdir@
@@ -123,9 +123,13 @@ clean distclean maintainer-clean::
 
 installdirs:
        $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${sbindir}
+       $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man5
        $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man8
 
 install:: named@EXEEXT@ lwresd@EXEEXT@ installdirs
        ${LIBTOOL_MODE_INSTALL} ${INSTALL_PROGRAM} named@EXEEXT@ ${DESTDIR}${sbindir}
        (cd ${DESTDIR}${sbindir}; rm -f lwresd@EXEEXT@; @LN@ named@EXEEXT@ lwresd@EXEEXT@)
-       for m in ${MANPAGES}; do ${INSTALL_DATA} ${srcdir}/$$m ${DESTDIR}${mandir}/man8; done
+       ${INSTALL_DATA} ${srcdir}/named.8 ${DESTDIR}${mandir}/man8
+       ${INSTALL_DATA} ${srcdir}/lwresd.8 ${DESTDIR}${mandir}/man8
+       ${INSTALL_DATA} ${srcdir}/named.conf.5 ${DESTDIR}${mandir}/man5
+