From: Antony Dovgal Date: Sun, 27 Nov 2005 23:00:55 +0000 (+0000) Subject: MF51: use || instead of -o to support weird systems with old `test` X-Git-Tag: RELEASE_2_0_2~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7f4360f2ebbb2e430ab5bdd12cd1f441516a943;p=php MF51: use || instead of -o to support weird systems with old `test` --- diff --git a/ext/pdo_sqlite/config.m4 b/ext/pdo_sqlite/config.m4 index 2f1a98536d..91cfe6cdc4 100644 --- a/ext/pdo_sqlite/config.m4 +++ b/ext/pdo_sqlite/config.m4 @@ -94,7 +94,7 @@ if test "$PHP_PDO_SQLITE" != "no"; then touch $ext_srcdir/sqlite/src/parse.c $ext_srcdir/sqlite/src/parse.h - if test "$ext_shared" = "no" -o "$ext_srcdir" != "$abs_srcdir"; then + if test "$ext_shared" = "no" || test "$ext_srcdir" != "$abs_srcdir"; then echo '#include ' > $ext_srcdir/sqlite/src/config.h else echo "#include \"$abs_builddir/config.h\"" > $ext_srcdir/sqlite/src/config.h