diff options
author | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-02-06 17:13:42 +0100 |
---|---|---|
committer | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-02-06 17:13:42 +0100 |
commit | be65bc99170c3865922f9ad0199e9ff0903e6242 (patch) | |
tree | ccd7ed37b88de38a47462ff2a6c95aec6ad8bc08 /win | |
parent | da0b03a9db77efa7d53555bd871d8f80d16a1fa9 (diff) | |
parent | 19df110369d4cef5303176a8aedca34cd0e2d271 (diff) | |
download | mariadb-git-be65bc99170c3865922f9ad0199e9ff0903e6242.tar.gz |
merge
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 07dccb66f83..00a66b32b64 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); } |