diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rwxr-xr-x | perl.prov | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Version 1.119 - 2 March 2011, by Jerome Quelin +- make v1.118 work with perl modules having a number followed by a _ in + their name, and a fully qualified VERSION (eg $l1_cache::VERSION = ...) + Version 1.118 - 26 February 2011, by Jerome Quelin - support for _ in perl module version diff --git a/configure.ac b/configure.ac index 82b8589..e3c34b3 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ # $Id: configure.ac 271266 2010-11-04 10:43:28Z fwang $ AC_PREREQ(2.59) -AC_INIT(rpm-mageia-setup, 1.118, jquelin@mageia.org) +AC_INIT(rpm-mageia-setup, 1.119, jquelin@mageia.org) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(1.9 -Wno-portability) AC_CONFIG_SRCDIR @@ -159,7 +159,7 @@ sub process_file { if (m/(\$Revision: (\d+[.0-9]+))/) { $version= $2; - } elsif (m/[\'\"]?(\d+[._0-9]+)[\'\"]?/) { + } elsif (m/VERSION.*?[\'\"]?(\d+[._0-9]+)[\'\"]?/) { # look for a static number hard coded in the script |