From: Adam Dickmeiss Date: Thu, 15 Dec 2011 09:17:21 +0000 (+0100) Subject: mk_version.tcl gets version from IDMETA X-Git-Tag: v4.2.23~7 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=d384acaecc0cc8b226aae4cf2f7ae4125cf272e6 mk_version.tcl gets version from IDMETA It's a month ago we moved version from configure.ac to IDMETA, but mk_version.tcl is only used on Windows. --- diff --git a/src/mk_version.tcl b/src/mk_version.tcl index 4bee1a4..9aee3c0 100644 --- a/src/mk_version.tcl +++ b/src/mk_version.tcl @@ -1,7 +1,7 @@ #!/usr/bin/tclsh proc usage {} { - puts {mk_version.tcl [-v] configure.ac infile ..} + puts {mk_version.tcl [-v] IDMETA infile ..} exit 1 } @@ -35,7 +35,7 @@ while {1} { if {$cnt < 0} { break } - regexp {AC_INIT\([^,]+,\[([0-9.]+)\]} $line s version + regexp {VERSION=([0-9.]+)} $line s version } close $f