diff options
author | gclarkii <gclarkii@FreeBSD.org> | 1994-09-11 19:53:02 +0000 |
---|---|---|
committer | gclarkii <gclarkii@FreeBSD.org> | 1994-09-11 19:53:02 +0000 |
commit | c2fc3688fc31b2452ff0835bec7ff70d713f8a9c (patch) | |
tree | 07835b052d8685c94d0e9c7cb63cb87a3a84cab1 /gnu | |
parent | 0c6bf1f73b7dc1d1bb043890b51fd78e3307ebed (diff) | |
download | FreeBSD-src-c2fc3688fc31b2452ff0835bec7ff70d713f8a9c.zip FreeBSD-src-c2fc3688fc31b2452ff0835bec7ff70d713f8a9c.tar.gz |
Added CURDIR directives for some installs.
Reviewed by: Gary Clark II
Submitted by: Rod Grimes
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/perl/x2p/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/x2p/Makefile b/gnu/usr.bin/perl/x2p/Makefile index d7e383d..e64802a 100644 --- a/gnu/usr.bin/perl/x2p/Makefile +++ b/gnu/usr.bin/perl/x2p/Makefile @@ -10,8 +10,9 @@ DPADD= ${LIBM} MAN1+= a2p.1 s2p.1 h2ph.1 beforeinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m 555 s2p ${BINDIR} - install -c -o ${BINOWN} -g ${BINGRP} -m 555 h2ph ${BINDIR} + install -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/s2p ${BINDIR} + install -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/h2ph ${BINDIR} .include <bsd.prog.mk> +.include "../../Makefile.inc" |