Skip to content

Commit

Permalink
correct backwards logic
Browse files Browse the repository at this point in the history
  • Loading branch information
wez committed Feb 13, 2005
1 parent 08f683a commit bee7f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/pdo_sqlite/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bee7f3d

Please sign in to comment.