summaryrefslogtreecommitdiff
path: root/ext/oci8/config.m4
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-08-14 12:15:04 +0000
committerAntony Dovgal <tony2001@php.net>2007-08-14 12:15:04 +0000
commit35591acebd6db0b0700e95c754646aa9d1c98ec5 (patch)
tree30951e4e2d7d69aa4c12e086caeebd5aa78cd523 /ext/oci8/config.m4
parent068ee421859e8dd6daa1f4ded8b7df39af8ab6bd (diff)
downloadphp-git-35591acebd6db0b0700e95c754646aa9d1c98ec5.tar.gz
MFH
Diffstat (limited to 'ext/oci8/config.m4')
-rw-r--r--ext/oci8/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/oci8/config.m4 b/ext/oci8/config.m4
index 487f3e79f0..eec2849e1d 100644
--- a/ext/oci8/config.m4
+++ b/ext/oci8/config.m4
@@ -36,11 +36,11 @@ AC_DEFUN([AC_OCI8_CHECK_LIB_DIR],[
fi
AC_MSG_CHECKING([OCI8 libraries dir])
- if test -d "$OCI8_DIR/lib" -a ! -d "$OCI8_DIR/lib32"; then
+ if test -d "$OCI8_DIR/lib" && test ! -d "$OCI8_DIR/lib32"; then
OCI8_LIB_DIR=lib
- elif ! test -d "$OCI8_DIR/lib" -a -d "$OCI8_DIR/lib32"; then
+ elif test ! -d "$OCI8_DIR/lib" && test -d "$OCI8_DIR/lib32"; then
OCI8_LIB_DIR=lib32
- elif test -d "$OCI8_DIR/lib" -a -d "$OCI8_DIR/lib32"; then
+ elif test -d "$OCI8_DIR/lib" && test -d "$OCI8_DIR/lib32"; then
OCI8_LIB_DIR=$TMP_OCI8_LIB_DIR
else
AC_MSG_ERROR([Oracle (OCI8) required libraries not found])