summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2013-05-09 14:31:48 +0000
committertaca <taca@pkgsrc.org>2013-05-09 14:31:48 +0000
commit8dab70c2a20926865274c63191da98e3593c334b (patch)
treed12b7d4566d1e0511d34f6d36f53ad17a0dfc6de /lang
parente3be174188264517988a8d676922a0db8790e4de (diff)
downloadpkgsrc-8dab70c2a20926865274c63191da98e3593c334b.tar.gz
Fix wrong condition check; make's variable should be referenced as variable.
Diffstat (limited to 'lang')
-rw-r--r--lang/php53/Makefile.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/php53/Makefile.php b/lang/php53/Makefile.php
index e771e3ac75e..830afb953a0 100644
--- a/lang/php53/Makefile.php
+++ b/lang/php53/Makefile.php
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.php,v 1.31 2013/04/12 16:59:51 taca Exp $
+# $NetBSD: Makefile.php,v 1.32 2013/05/09 14:31:48 taca Exp $
# used by lang/php53/Makefile
# used by www/ap-php/Makefile
@@ -58,7 +58,7 @@ PKG_SUGGESTED_OPTIONS+= inet6 ssl
.if !empty(PKG_OPTIONS:Msuhosin)
SUHOSIN_PHPVER= 5.3.23
-. if ${SUHOSIN_PHPVER} != ${PHP_BASE_VERS} && PHP_BASE_VERS != "5.3.24"
+. if ${SUHOSIN_PHPVER} != ${PHP_BASE_VERS} && ${PHP_BASE_VERS} != "5.3.24"
PKG_FAIL_REASON+= "The suhosin patch is currently not available for"
PKG_FAIL_REASON+= "this version of PHP. You may have to wait until"
PKG_FAIL_REASON+= "an updated patch is released or temporarily"