diff options
author | Kent Boortz <kent.boortz@sun.com> | 2010-02-03 14:52:11 +0100 |
---|---|---|
committer | Kent Boortz <kent.boortz@sun.com> | 2010-02-03 14:52:11 +0100 |
commit | 0a90bfe6c019fd1dc3db3090de969077ac311fb5 (patch) | |
tree | 0d9847783344200f4a3af8788b614b2f0f008acc /win | |
parent | 579bd58c12dffd7ce09a9280357ba58263d41046 (diff) | |
download | mariadb-git-0a90bfe6c019fd1dc3db3090de969077ac311fb5.tar.gz |
Adjuster the parsing of "configure.in" version number line
Diffstat (limited to 'win')
-rw-r--r-- | win/configure.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/configure.js b/win/configure.js index fc5c548c983..38fa8e7afeb 100644 --- a/win/configure.js +++ b/win/configure.js @@ -140,11 +140,11 @@ function GetValue(str, key) function GetVersion(str) { - var key = "AM_INIT_AUTOMAKE(mysql, "; - var pos = str.indexOf(key); //5.0.6-beta) + var key = "AC_INIT([MySQL Server], ["; + var pos = str.indexOf(key); if (pos == -1) return null; pos += key.length; - var end = str.indexOf(")", pos); + var end = str.indexOf("]", pos); if (end == -1) return null; return str.substring(pos, end); } |