diff options
author | jedgar <jedgar@FreeBSD.org> | 2002-05-29 21:49:37 +0000 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2002-05-29 21:49:37 +0000 |
commit | b6a74e2c5849338df15f90292d2a77cecaf3d29e (patch) | |
tree | 0a04d330d5b7f8b1141e71ac4fa4c22bb03ac94b /usr.sbin/named | |
parent | 61082730c6ed6ffab855fb373a50ebed1b88d890 (diff) | |
download | FreeBSD-src-b6a74e2c5849338df15f90292d2a77cecaf3d29e.zip FreeBSD-src-b6a74e2c5849338df15f90292d2a77cecaf3d29e.tar.gz |
Use the predefined DOCDIR instead of hard-coding /usr/share/doc/bind,
add support for DESTDIR.
Diffstat (limited to 'usr.sbin/named')
-rw-r--r-- | usr.sbin/named/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/named/Makefile b/usr.sbin/named/Makefile index f97c6c9..2a09127 100644 --- a/usr.sbin/named/Makefile +++ b/usr.sbin/named/Makefile @@ -27,7 +27,6 @@ LIBISC:= ${LIBISCDIR}/libisc.a DPADD+= ${LIBISC} LDADD+= ${LIBISC} -DOCDIR= /usr/share/doc/bind HTMLS= acl.html address_list.html comments.html config.html controls.html \ docdef.html example.html include.html index.html key.html \ logging.html master.html options.html server.html trusted-keys.html \ @@ -37,10 +36,10 @@ FILES= ${HTMLS} ${MISCS} .PATH: ${BIND_DIR}/doc/html ${BIND_DIR}/doc/misc .for file in ${HTMLS} -FILESDIR_${file}= ${DOCDIR}/html +FILESDIR_${file}= ${DESTDIR}${DOCDIR}/bind/html .endfor .for file in ${MISCS} -FILESDIR_${file}= ${DOCDIR}/misc +FILESDIR_${file}= ${DESTDIR}${DOCDIR}/bind/misc .endfor .include <bsd.prog.mk> |