From bee7f3d0acca657ca185b3b718b7da3bb7f34207 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sun, 13 Feb 2005 03:01:38 +0000 Subject: [PATCH] correct backwards logic --- 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 554e06f6f4..c5cec4b46c 100644 --- a/ext/pdo_sqlite/config.m4 +++ b/ext/pdo_sqlite/config.m4 @@ -91,7 +91,7 @@ if test "$PHP_PDO_SQLITE" != "no"; then sort -n +2 $ext_srcdir/sqlite/src/opcodes.h | awk -f $ext_srcdir/sqlite/mkopcodec.awk > $ext_srcdir/sqlite/src/opcodes.c fi - if test "$ext_shared" = "no" -o "$ext_srcdir" = "$abs_srcdir"; then + if test "$ext_shared" = "no" -o "$ext_srcdir" != "$abs_srcdir"; then echo '#include "php_config.h"' > $ext_srcdir/sqlite/src/config.h else echo "#include \"$abs_builddir/config.h\"" > $ext_srcdir/sqlite/src/config.h -- 2.50.1