Include of bsd.prog.mk should almost always be the last line of the file.

Fix missing ${DESTDIR} in 2 places (rgrimes)
Submitted by:	bde
This commit is contained in:
Rodney W. Grimes 1994-09-12 05:10:07 +00:00
parent 4f1f23c3db
commit 2276db83cf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2684
4 changed files with 8 additions and 10 deletions

View File

@ -13,6 +13,5 @@ DPADD= ${LIBM}
DPADD+= ${LIBCRYPT}
LDADD+= -lcrypt
.include <bsd.prog.mk>
.include "../../Makefile.inc"
.include <bsd.prog.mk>

View File

@ -22,6 +22,5 @@ DPADD+= ${LIBCRYPT}
NOMAN=
.include <bsd.prog.mk>
.include "../../Makefile.inc"
.include <bsd.prog.mk>

View File

@ -22,6 +22,5 @@ DPADD+= ${LIBCRYPT}
NOMAN=
.include <bsd.prog.mk>
.include "../../Makefile.inc"
.include <bsd.prog.mk>

View File

@ -10,9 +10,10 @@ DPADD= ${LIBM}
MAN1+= a2p.1 s2p.1 h2ph.1
beforeinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/s2p ${BINDIR}
install -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/h2ph ${BINDIR}
install -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/s2p \
${DESTDIR}${BINDIR}
install -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/h2ph \
${DESTDIR}${BINDIR}
.include <bsd.prog.mk>
.include "../../Makefile.inc"
.include <bsd.prog.mk>