ID: 48661 User updated by: strube at physik3 dot gwdg dot de Reported By: strube at physik3 dot gwdg dot de -Status: Feedback +Status: Open Bug Type: *General Issues Operating System: Solaris PHP Version: 5.2.10 New Comment:
It was okay in both 4.4.9 and 5.2.9. In Solaris, /bin/sh is _not_ bash and does not allow '!' between 'if' and 'test'. Previous Comments: ------------------------------------------------------------------------ [2009-06-24 06:22:07] j...@php.net Also: Did you use bash? ------------------------------------------------------------------------ [2009-06-24 06:20:14] j...@php.net And in what version it was okay? Hint: This is not something new.. ------------------------------------------------------------------------ [2009-06-23 14:13:57] strube at physik3 dot gwdg dot de Description: ------------ Running phpize yields two error messages "! not found". Suggested fix for scripts/phpize.in: 124c124 < 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 132c132 < if ! test -x "$PHP_AUTOHEADER" && ! test -x "`$php_shtool path $PHP_AUTOHEADER`"; then --- > if test ! -x "$PHP_AUTOHEADER" && test ! -x "`$php_shtool path $PHP_AUTOHEADER`"; then ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=48661&edit=1