Change install' to ${INSTALL}' as usual.

Remove the extra slash in ${DESTDIR}/${BINDIR}.
This commit is contained in:
Bruce Evans 1995-07-25 00:22:50 +00:00
parent c2471061b8
commit 6eee579315
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9700
3 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@
MAN1= lorder.1
beforeinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/lorder.sh ${DESTDIR}/${BINDIR}/lorder
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/lorder.sh ${DESTDIR}${BINDIR}/lorder
.include <bsd.prog.mk>

View File

@ -3,7 +3,7 @@
MAN1= pagesize.1
install:
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/pagesize.sh ${DESTDIR}/${BINDIR}/pagesize
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/pagesize.sh ${DESTDIR}${BINDIR}/pagesize
.include <bsd.prog.mk>

View File

@ -3,7 +3,7 @@
MAN1= which.1
beforeinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/which.pl ${DESTDIR}/${BINDIR}/which
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/which.pl ${DESTDIR}${BINDIR}/which
.include <bsd.prog.mk>