diff options
author | rodent <rodent@pkgsrc.org> | 2015-04-04 13:09:54 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2015-04-04 13:09:54 +0000 |
commit | 45721f25b9baa9ce24e77da339285f5d537c8025 (patch) | |
tree | a6196e1860f1ef99061eb512ad9e7b675b804ade /devel | |
parent | be766f4252ca967e483196483c320223081cdaff (diff) | |
download | pkgsrc-45721f25b9baa9ce24e77da339285f5d537c8025.tar.gz |
Needs to be if empty, not if !empty
Diffstat (limited to 'devel')
-rw-r--r-- | devel/php-pthreads/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/php-pthreads/Makefile b/devel/php-pthreads/Makefile index 8038db930e9..a30f7aef942 100644 --- a/devel/php-pthreads/Makefile +++ b/devel/php-pthreads/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2015/03/26 04:04:43 rodent Exp $ +# $NetBSD: Makefile,v 1.3 2015/04/04 13:09:54 rodent Exp $ MODNAME= pthreads PECL_VERSION= 2.0.10 @@ -19,7 +19,7 @@ USE_LIBTOOL= yes .include "../../lang/php/phpversion.mk" -.if !empty(PKG_OPTIONS.${PHP_PKG_PREFIX}:Mmaintainer-zts) +.if empty(PKG_OPTIONS.${PHP_PKG_PREFIX}:Mmaintainer-zts) BROKEN= Requires the maintainer-zts option enabled in PHP. .endif |