diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-04-11 21:17:37 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-04-11 21:17:37 +0000 |
commit | 0bde5e136fef810e824da1488815142cd9a388c1 (patch) | |
tree | 63d91fc75aa12b8cf52415eb850d0b66239cb1e6 /Makefile.PL | |
parent | 586fda220dc1ffae6b4ab98cfb3bf59f73749957 (diff) | |
download | perl-URPM-0bde5e136fef810e824da1488815142cd9a388c1.tar perl-URPM-0bde5e136fef810e824da1488815142cd9a388c1.tar.gz perl-URPM-0bde5e136fef810e824da1488815142cd9a388c1.tar.bz2 perl-URPM-0bde5e136fef810e824da1488815142cd9a388c1.tar.xz perl-URPM-0bde5e136fef810e824da1488815142cd9a388c1.zip |
we don't compile anymore with rpm < 4.8
Diffstat (limited to 'Makefile.PL')
-rwxr-xr-x | Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL index 183bcca..fc330e9 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -27,7 +27,7 @@ $version =~ s/(-.*)|(\.DEVEL)//; chomp $version; $version =~ s/(RPM version )|(rpm \(RPM\) )//; my $hversion = hexversion($version); -$hversion ge hexversion("4.2") or die "Unable to build URPM with too old (or undetected) rpm version $version\n"; +$hversion ge hexversion("4.8") or die "Unable to build URPM with too old (or undetected) rpm version $version\n"; # to generate the ChangeLog depending on the checkout layout my $commonusername = "../common/"; |