From d384acaecc0cc8b226aae4cf2f7ae4125cf272e6 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 15 Dec 2011 10:17:21 +0100 Subject: [PATCH] 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. --- src/mk_version.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.7.10.4