1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00

- Fixed bug #26376 (typo in ext/odbc/config.m4: DBMaker test fails)

This commit is contained in:
foobar
2003-11-25 08:07:35 +00:00
parent 47bbc0de9f
commit 7a3ad4172f
+2 -4
View File
@@ -454,11 +454,9 @@ AC_ARG_WITH(dbmaker,
# check DBMaker version (from 5.0 to 2.0)
DBMAKER_VERSION=5.0
while test test ! -d $DBMAKER_HOME/$DBMAKER_VERSION -a \
"$DBMAKER_VERSION" != "2.9"; do
while test ! -d $DBMAKER_HOME/$DBMAKER_VERSION -a "$DBMAKER_VERSION" != "2.9"; do
DM_VER=`echo $DBMAKER_VERSION | sed -e 's/\.//' | awk '{ print $1-1;}'`
MAJOR_V=`echo $DM_VER | awk '{ print $1/10; }' \
| awk -F. '{ print $1; }'`
MAJOR_V=`echo $DM_VER | awk '{ print $1/10; }' | awk -F. '{ print $1; }'`
MINOR_V=`echo $DM_VER | awk '{ print $1%10; }'`
DBMAKER_VERSION=$MAJOR_V.$MINOR_V
done