2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

288. [cleanup] dig is now installed in $bindir instead of $sbindir.

host is now installed in $bindir.  (Be sure to remove
			any $sbindir/dig from a previous release.)
This commit is contained in:
David Lawrence 2000-06-28 16:32:41 +00:00
parent 0cd1ba32c1
commit c118f038d6

View File

@ -13,7 +13,7 @@
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
# $Id: Makefile.in,v 1.10 2000/06/22 21:48:59 tale Exp $
# $Id: Makefile.in,v 1.11 2000/06/28 16:32:41 tale Exp $
srcdir = @srcdir@
VPATH = @srcdir@
@ -63,9 +63,10 @@ clean distclean::
rm -f ${TARGETS}
installdirs:
if [ ! -d ${DESTDIR}${sbindir} ]; then \
mkdir ${DESTDIR}${sbindir}; \
if [ ! -d ${DESTDIR}${bindir} ]; then \
mkdir ${DESTDIR}${bindir}; \
fi
install:: dig host installdirs
${LIBTOOL} ${INSTALL_PROGRAM} dig ${DESTDIR}${sbindir}
${LIBTOOL} ${INSTALL_PROGRAM} dig ${DESTDIR}${bindir}
${LIBTOOL} ${INSTALL_PROGRAM} host ${DESTDIR}${bindir}