diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-07-25 17:01:54 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-07-25 17:01:54 +0000 |
commit | 9a1f83757ac982797a35f824fbada528f3d284bd (patch) | |
tree | 43e34286c391552f22a2b00dc2577ec4d1c40d26 /perl.prov | |
parent | 6ca6d0c8e14c816485b954f2c636b8ea9500ec1b (diff) | |
download | rpm-setup-9a1f83757ac982797a35f824fbada528f3d284bd.tar rpm-setup-9a1f83757ac982797a35f824fbada528f3d284bd.tar.gz rpm-setup-9a1f83757ac982797a35f824fbada528f3d284bd.tar.bz2 rpm-setup-9a1f83757ac982797a35f824fbada528f3d284bd.tar.xz rpm-setup-9a1f83757ac982797a35f824fbada528f3d284bd.zip |
sync with upstream rpm.org: "Remove unneeded regex grouping"
(Ville Skyttä, 2011-04-24)
Diffstat (limited to 'perl.prov')
-rwxr-xr-x | perl.prov | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -157,8 +157,8 @@ sub process_file { # '$Revision' this often causes bizzare strings and is the most # common method of non static numbering. - if (m/(\$Revision: (\d+[.0-9]+))/) { - $version= $2; + if (m/\$Revision: (\d+[.0-9]+)/) { + $version= $1; } elsif (m/VERSION.*?[\'\"]?(\d+[._0-9]+)[\'\"]?/) { # look for a static number hard coded in the script |