Date: Fri, 31 May 2002 10:53:36 +0200 (SAT) From: John Hay <jhay@icomtek.csir.co.za> To: jedgar@FreeBSD.org (Chris D. Faulhaber) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/named Makefile Message-ID: <200205310853.g4V8raR07689@zibbi.icomtek.csir.co.za> In-Reply-To: <200205292149.g4TLnbm04141@freefall.freebsd.org> from "Chris D. Faulhaber" at "May 29, 2002 02:49:37 pm"
next in thread | previous in thread | raw e-mail | index | archive | help
> jedgar 2002/05/29 14:49:37 PDT
>
> Modified files:
> usr.sbin/named Makefile
> Log:
> Use the predefined DOCDIR instead of hard-coding /usr/share/doc/bind,
> add support for DESTDIR.
>
> Revision Changes Path
> 1.31 +2 -3 src/usr.sbin/named/Makefile
This seems to break make release. I think DESTDIR is already included
in DOCDIR. Try "make -n install DESTDIR=/somewhere" in the named
directory and you will see that /somewhere is duplicated. Here is
a patch for that.
John
--
John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org
Index: usr.sbin/named/Makefile
===================================================================
RCS file: /home/ncvs/src/usr.sbin/named/Makefile,v
retrieving revision 1.31
diff -u -r1.31 Makefile
--- usr.sbin/named/Makefile 29 May 2002 21:49:37 -0000 1.31
+++ usr.sbin/named/Makefile 31 May 2002 08:38:26 -0000
@@ -36,10 +36,10 @@
.PATH: ${BIND_DIR}/doc/html ${BIND_DIR}/doc/misc
.for file in ${HTMLS}
-FILESDIR_${file}= ${DESTDIR}${DOCDIR}/bind/html
+FILESDIR_${file}= ${DOCDIR}/bind/html
.endfor
.for file in ${MISCS}
-FILESDIR_${file}= ${DESTDIR}${DOCDIR}/bind/misc
+FILESDIR_${file}= ${DOCDIR}/bind/misc
.endfor
.include <bsd.prog.mk>
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200205310853.g4V8raR07689>
