ID: 48661 Updated by: j...@php.net Reported By: strube at physik3 dot gwdg dot de -Status: Open +Status: Closed Bug Type: *General Issues Operating System: Solaris PHP Version: 5.2.10 New Comment:
This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2009-06-24 07:39:46] j...@php.net With bash you would have lot less problems anyhow. Will fix this though. In the future, please test the RCs. This would have been caught earlier and not after release.. ------------------------------------------------------------------------ [2009-06-24 07:18:25] strube at physik3 dot gwdg dot de 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'. ------------------------------------------------------------------------ [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