diff options
author | edwin <edwin@FreeBSD.org> | 2003-08-25 09:12:22 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-08-25 09:12:22 +0800 |
commit | 9c2f030316d79b5997bf58825dc594b60b0d9d77 (patch) | |
tree | 62793a58b44b9f117017eeeb21e28bd5c0a7aab2 /devel/pear-PEAR | |
parent | fe48dfe169d207be80389229fd612f571ca4d32d (diff) | |
download | freebsd-ports-gnome-9c2f030316d79b5997bf58825dc594b60b0d9d77.tar.gz freebsd-ports-gnome-9c2f030316d79b5997bf58825dc594b60b0d9d77.tar.zst freebsd-ports-gnome-9c2f030316d79b5997bf58825dc594b60b0d9d77.zip |
devel/pear-PEAR: separating build & install of PECL.
When you build a PECL module, NO_BUILD is defined => the
build target does not build anything, and make all is delayed
until `make install'.
PR: ports/55168
Submitted by: Thierry Thomas <thierry@pompo.net>
Diffstat (limited to 'devel/pear-PEAR')
-rw-r--r-- | devel/pear-PEAR/Makefile.common | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/devel/pear-PEAR/Makefile.common b/devel/pear-PEAR/Makefile.common index d229ae240323..25610e9dad82 100644 --- a/devel/pear-PEAR/Makefile.common +++ b/devel/pear-PEAR/Makefile.common @@ -7,7 +7,9 @@ PKGNAMEPREFIX= pear- EXTRACT_SUFX= .tgz DIST_SUBDIR= PEAR +.if !defined(USE_PHPIZE) NO_BUILD= yes +.endif .if exists(${LOCALBASE}/bin/php-config) PHP_BASE!= ${LOCALBASE}/bin/php-config --prefix |