${DESTDIR}/usr/bin -> ${DESTDIR}${BINDIR}

This commit is contained in:
Wolfram Schneider 1997-02-02 14:41:43 +00:00
parent 1c34c7fd77
commit 65d758c4cb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=22210
5 changed files with 7 additions and 7 deletions

View File

@ -8,10 +8,10 @@ all nologin clean cleandir depend lint tags:
beforeinstall: beforeinstall:
.if ${MACHINE} == "sparc" .if ${MACHINE} == "sparc"
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/cpp.notraditional.sh ${DESTDIR}/usr/bin/cpp ${.CURDIR}/cpp.notraditional.sh ${DESTDIR}${BINDIR}/cpp
.else .else
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/cpp.sh ${DESTDIR}/usr/bin/cpp ${.CURDIR}/cpp.sh ${DESTDIR}${BINDIR}/cpp
.endif .endif
.include <bsd.prog.mk> .include <bsd.prog.mk>

View File

@ -6,8 +6,8 @@ MAN1= id.1 groups.1 whoami.1
# XXX BROKEN: afterinstall: # XXX BROKEN: afterinstall:
afterinstall: afterinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/groups.sh ${DESTDIR}/usr/bin/groups ${.CURDIR}/groups.sh ${DESTDIR}${BINDIR}/groups
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/whoami.sh ${DESTDIR}/usr/bin/whoami ${.CURDIR}/whoami.sh ${DESTDIR}${BINDIR}/whoami
.include <bsd.prog.mk> .include <bsd.prog.mk>

View File

@ -4,6 +4,6 @@ MAN1= mkdep.1
beforeinstall: beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/mkdep.gcc.sh ${DESTDIR}/usr/bin/mkdep ${.CURDIR}/mkdep.gcc.sh ${DESTDIR}${BINDIR}/mkdep
.include <bsd.prog.mk> .include <bsd.prog.mk>

View File

@ -4,6 +4,6 @@ MAN1= shar.1
beforeinstall: beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/shar.sh ${DESTDIR}/usr/bin/shar ${.CURDIR}/shar.sh ${DESTDIR}${BINDIR}/shar
.include <bsd.prog.mk> .include <bsd.prog.mk>

View File

@ -7,6 +7,6 @@ MLINKS= tput.1 clear.1
beforeinstall: beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/clear.sh ${DESTDIR}/usr/bin/clear ${.CURDIR}/clear.sh ${DESTDIR}${BINDIR}/clear
.include <bsd.prog.mk> .include <bsd.prog.mk>