From af5501027f0845d66de489d5de238f6a3099e47c Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Thu, 10 Jun 2004 14:06:17 +0000 Subject: [PATCH] Fixed bug #28723 (Fixed mbstring config.m4 to work on OSes where test command does not support -e parameter). --- 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 718d614a65..9b437c0e07 100644 --- a/ext/mbstring/config.m4 +++ b/ext/mbstring/config.m4 @@ -37,7 +37,7 @@ AC_DEFUN([PHP_MBSTRING_EXTENSION], [ if test "$ext_shared" = "no"; then out="php_config.h" else - if test -e "$ext_builddir/config.h.in"; then + if test -f "$ext_builddir/config.h.in"; then out="$abs_builddir/config.h" else out="php_config.h" -- 2.50.1