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

Remove the extra slash in ${DESTDIR}/${BINDIR}.
This commit is contained in:
bde 1995-07-25 00:22:50 +00:00
parent 24091efe31
commit 4325752c55
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>