From a8e42c91b07ac301632aa2be81d3327669cdc275 Mon Sep 17 00:00:00 2001 From: Jani Taskinen Date: Wed, 24 Jun 2009 07:42:33 +0000 Subject: [PATCH] MFH:- Fixed bug #48661 (phpize broken with non-bash shells) --- scripts/phpize.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/phpize.in b/scripts/phpize.in index 3adb8c8da4..40ccc77b1f 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -121,7 +121,7 @@ phpize_check_autotools() test -z "$PHP_AUTOCONF" && PHP_AUTOCONF=autoconf test -z "$PHP_AUTOHEADER" && PHP_AUTOHEADER=autoheader - if ! test -x "$PHP_AUTOCONF" && ! test -x "`$php_shtool path $PHP_AUTOCONF`"; then + if test ! -x "$PHP_AUTOCONF" && test ! -x "`$php_shtool path $PHP_AUTOCONF`"; then cat <