mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
4f1f23c3db
commit
2276db83cf
4 changed files with 8 additions and 10 deletions
|
|
@ -13,6 +13,5 @@ DPADD= ${LIBM}
|
|||
DPADD+= ${LIBCRYPT}
|
||||
LDADD+= -lcrypt
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
.include "../../Makefile.inc"
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
|
|
@ -22,6 +22,5 @@ DPADD+= ${LIBCRYPT}
|
|||
NOMAN=
|
||||
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
.include "../../Makefile.inc"
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
|
|
@ -22,6 +22,5 @@ DPADD+= ${LIBCRYPT}
|
|||
NOMAN=
|
||||
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
.include "../../Makefile.inc"
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue