diff options
author | erwin <erwin@FreeBSD.org> | 2003-10-10 17:05:35 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2003-10-10 17:05:35 +0800 |
commit | c1e9b22c00b69dbc0707db2d8f06da057fa5b691 (patch) | |
tree | 04baaf53d44525ebf0c7ccdbbc82d813e7d87734 /devel/pear-PEAR | |
parent | 25c058a1382f3523394a314f2d1fa9d81bb4fdf3 (diff) | |
download | freebsd-ports-graphics-c1e9b22c00b69dbc0707db2d8f06da057fa5b691.tar.gz freebsd-ports-graphics-c1e9b22c00b69dbc0707db2d8f06da057fa5b691.tar.zst freebsd-ports-graphics-c1e9b22c00b69dbc0707db2d8f06da057fa5b691.zip |
Replace ${.CURDIR}/../../ with ${PORTSDIR} which is more correct and
for bordercases like me where those two not necessarily are the same, it
makes it compile again.
Diffstat (limited to 'devel/pear-PEAR')
-rw-r--r-- | devel/pear-PEAR/Makefile | 2 | ||||
-rw-r--r-- | devel/pear-PEAR/Makefile.common | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/devel/pear-PEAR/Makefile b/devel/pear-PEAR/Makefile index 532bca319c3..b33c32c1f01 100644 --- a/devel/pear-PEAR/Makefile +++ b/devel/pear-PEAR/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= ${PEARDIR}/Archive/Tar.php:${PORTSDIR}/archivers/pear-Archive_Tar RUN_DEPENDS= ${BUILD_DEPENDS} .include <bsd.port.pre.mk> -.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common" +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" MANIFEST= OS PEAR PEAR.php System.php package.dtd scripts template.spec diff --git a/devel/pear-PEAR/Makefile.common b/devel/pear-PEAR/Makefile.common index 25610e9dad8..d8d5ab3d00f 100644 --- a/devel/pear-PEAR/Makefile.common +++ b/devel/pear-PEAR/Makefile.common @@ -21,8 +21,8 @@ PEARDIR= ${PHP_BASE}/${LPEARDIR} LPKGREGDIR= ${LPEARDIR}/packages/${PKGNAME} PKGREGDIR= ${PHP_BASE}/${LPKGREGDIR} PLIST_SUB= PEARDIR=${LPEARDIR} PKGREGDIR=${LPKGREGDIR} -PKGINSTALL= ${.CURDIR}/../../devel/pear-PEAR/pkg-install -PKGDEINSTALL= ${.CURDIR}/../../devel/pear-PEAR/pkg-deinstall +PKGINSTALL= ${PORTSDIR}/devel/pear-PEAR/pkg-install +PKGDEINSTALL= ${PORTSDIR}/devel/pear-PEAR/pkg-deinstall DOCSDIR= ${PEARDIR}/docs/${PORTNAME} |