summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorNoriko Hosoi <nhosoi@redhat.com>2007-04-12 21:05:59 +0000
committerNoriko Hosoi <nhosoi@redhat.com>2007-04-12 21:05:59 +0000
commit2ed96135a9567d3fa1f45a945c984eb80024fb97 (patch)
tree2e4d519dfce93649bbea74ac762becacd1f263f7 /autogen.sh
parent89d4bcb473418d6571b4a353de2c0fdae85f266c (diff)
downloadds-2ed96135a9567d3fa1f45a945c984eb80024fb97.tar.gz
ds-2ed96135a9567d3fa1f45a945c984eb80024fb97.tar.xz
ds-2ed96135a9567d3fa1f45a945c984eb80024fb97.zip
Resolves: #233215
Summary: verify-db.pl still assumes the db dir is always in the instance dir (Comment #14)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 67eb4be1..07c4af45 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -15,8 +15,8 @@ esac
# Check automake version
AM_VERSION=`automake --version | grep '^automake' | sed 's/.*) *//'`
case $AM_VERSION in
-'' | 0.* | 1.[0-8]* | 1.9.[0-1]* )
- echo "You must have automake version 1.9.2 or later installed (found version $AM_VERSION)."
+'' | 0.* | 1.[0-8]* | 1.9.[0-5]* )
+ echo "You must have automake version 1.9.6 or later installed (found version $AM_VERSION)."
exit 1
;;
* )