Skip to content

Commit a8e42c9

Browse files
author
Jani Taskinen
committed
MFH:- Fixed bug #48661 (phpize broken with non-bash shells)
1 parent 0fbf8ce commit a8e42c9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/phpize.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,15 +121,15 @@ phpize_check_autotools()
121121
test -z "$PHP_AUTOCONF" && PHP_AUTOCONF=autoconf
122122
test -z "$PHP_AUTOHEADER" && PHP_AUTOHEADER=autoheader
123123

124-
if ! test -x "$PHP_AUTOCONF" && ! test -x "`$php_shtool path $PHP_AUTOCONF`"; then
124+
if test ! -x "$PHP_AUTOCONF" && test ! -x "`$php_shtool path $PHP_AUTOCONF`"; then
125125
cat <<EOF
126126
Cannot find autoconf. Please check your autoconf installation and the
127127
\$PHP_AUTOCONF environment variable. Then, rerun this script.
128128
129129
EOF
130130
exit 1
131131
fi
132-
if ! test -x "$PHP_AUTOHEADER" && ! test -x "`$php_shtool path $PHP_AUTOHEADER`"; then
132+
if test ! -x "$PHP_AUTOHEADER" && test ! -x "`$php_shtool path $PHP_AUTOHEADER`"; then
133133
cat <<EOF
134134
Cannot find autoheader. Please check your autoconf installation and the
135135
\$PHP_AUTOHEADER environment variable. Then, rerun this script.

0 commit comments

Comments
 (0)