diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rwxr-xr-x | perl.prov | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,6 @@ +Version 1.118 - 26 February 2011, by Jerome Quelin +- support for _ in perl module version + Version 1.117 - 20 February 2011, by Ahmad Samir - merge svn rev. 271797 from Mandriva to make the python auto-requires always lowercase diff --git a/configure.ac b/configure.ac index 00b4227..82b8589 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.117, ahmad@mageia.org) +AC_INIT(rpm-mageia-setup, 1.118, 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/[\'\"]?(\d+[._0-9]+)[\'\"]?/) { # look for a static number hard coded in the script |