diff options
author | edwin <edwin@FreeBSD.org> | 2003-12-28 17:11:28 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-12-28 17:11:28 +0800 |
commit | 2cb4dc44f3cfa2fe6218d40eaaebeedc0c826661 (patch) | |
tree | c0a0fd2006df428d14a6e8f4625b96e08187ac7c /devel/pear-HTML_Common | |
parent | 09994c796223a4e0691ac0662d041eefc783a3ff (diff) | |
download | freebsd-ports-gnome-2cb4dc44f3cfa2fe6218d40eaaebeedc0c826661.tar.gz freebsd-ports-gnome-2cb4dc44f3cfa2fe6218d40eaaebeedc0c826661.tar.zst freebsd-ports-gnome-2cb4dc44f3cfa2fe6218d40eaaebeedc0c826661.zip |
pear-* ports: simplify path to devel/pear-PEAR/Makefile.common
.include <bsd.port.pre.mk>
.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common"
can be simplified to:
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common"
the latter version also doesn't make any assumptions about the
path of including Makefile
PR: ports/57152
Submitted by: Roman Neuhauser <neuhauser@bellavista.cz>
Diffstat (limited to 'devel/pear-HTML_Common')
-rw-r--r-- | devel/pear-HTML_Common/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/pear-HTML_Common/Makefile b/devel/pear-HTML_Common/Makefile index fe14cf60ee48..676f005c1c04 100644 --- a/devel/pear-HTML_Common/Makefile +++ b/devel/pear-HTML_Common/Makefile @@ -16,7 +16,7 @@ BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR RUN_DEPENDS= ${BUILD_DEPENDS} .include <bsd.port.pre.mk> -.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common" +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" do-install: @${MKDIR} ${PEARDIR}/HTML |