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 /www/pear-HTTP | |
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 'www/pear-HTTP')
-rw-r--r-- | www/pear-HTTP/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/pear-HTTP/Makefile b/www/pear-HTTP/Makefile index bdcd65fd90ed..95111cfe8c36 100644 --- a/www/pear-HTTP/Makefile +++ b/www/pear-HTTP/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: @${CP} ${WRKSRC}/HTTP.php ${PEARDIR} |