From ed2fd39d0a6c69c9c7019f0f811f9b5392dfe4bf Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Mon, 8 Dec 2003 07:18:20 +0000 Subject: [PATCH] Avoid using non-portable test syntax. This was causing problems on Solaris. (Reported by Uwe Schindler. Thanks!) --- ext/mbstring/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4 index 00507adc20..9cff51897f 100644 --- a/ext/mbstring/config.m4 +++ b/ext/mbstring/config.m4 @@ -34,7 +34,7 @@ AC_DEFUN([PHP_MBSTRING_EXTENSION], [ PHP_ADD_BUILD_DIR([$ext_builddir/$dir]) done - if test "$ext_shared" = "no" -o ! -e "$ext_builddir/config.h.in"; then + if test "$ext_shared" = "no" || ! test -e "$ext_builddir/config.h.in"; then out="php_config.h" else out="$abs_builddir/config.h" -- 2.50.1