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-apd | |
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-apd')
-rw-r--r-- | devel/pear-apd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/pear-apd/Makefile b/devel/pear-apd/Makefile index 0056c95dde2d..65a9700ff0fb 100644 --- a/devel/pear-apd/Makefile +++ b/devel/pear-apd/Makefile @@ -20,8 +20,8 @@ USE_PHPIZE= yes CONFIGURE_ARGS= --enable-apd .include <bsd.port.pre.mk> -.include "${.CURDIR}/../../lang/php4/bsd.php.mk" -.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common" +.include "${PORTSDIR}/lang/php4/bsd.php.mk" +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" .if exists(${LOCALBASE}/bin/php-config) EXT_DIR!= ${LOCALBASE}/bin/php-config --extension-dir | ${SED} -e \ |