From e7f4360f2ebbb2e430ab5bdd12cd1f441516a943 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Sun, 27 Nov 2005 23:00:55 +0000 Subject: [PATCH] MF51: use || instead of -o to support weird systems with old `test` --- ext/pdo_sqlite/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo_sqlite/config.m4 b/ext/pdo_sqlite/config.m4 index 2f1a98536d5..91cfe6cdc4f 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