mirror of
https://github.com/MariaDB/server.git
synced 2025-05-29 21:42:28 +03:00
Adjuster the parsing of "configure.in" version number line
This commit is contained in:
parent
90f7cfa6ac
commit
21a6569952
@ -140,11 +140,11 @@ function GetValue(str, key)
|
|||||||
|
|
||||||
function GetVersion(str)
|
function GetVersion(str)
|
||||||
{
|
{
|
||||||
var key = "AM_INIT_AUTOMAKE(mysql, ";
|
var key = "AC_INIT([MySQL Server], [";
|
||||||
var pos = str.indexOf(key); //5.0.6-beta)
|
var pos = str.indexOf(key);
|
||||||
if (pos == -1) return null;
|
if (pos == -1) return null;
|
||||||
pos += key.length;
|
pos += key.length;
|
||||||
var end = str.indexOf(")", pos);
|
var end = str.indexOf("]", pos);
|
||||||
if (end == -1) return null;
|
if (end == -1) return null;
|
||||||
return str.substring(pos, end);
|
return str.substring(pos, end);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user