diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2004-06-10 14:06:17 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2004-06-10 14:06:17 +0000 |
| commit | af5501027f0845d66de489d5de238f6a3099e47c (patch) | |
| tree | 76702eedfa5aa597460b093e714c3d248bf1ac28 | |
| parent | 7318238236e1c8508751b0c472d31dd1feb4d3a4 (diff) | |
| download | php-git-af5501027f0845d66de489d5de238f6a3099e47c.tar.gz | |
Fixed bug #28723 (Fixed mbstring config.m4 to work on OSes where test
command does not support -e parameter).
| -rw-r--r-- | ext/mbstring/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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" |
