aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-04-11 21:17:37 +0000
committerThierry Vignaud <tv@mageia.org>2012-04-11 21:17:37 +0000
commit0bde5e136fef810e824da1488815142cd9a388c1 (patch)
tree63d91fc75aa12b8cf52415eb850d0b66239cb1e6
parent586fda220dc1ffae6b4ab98cfb3bf59f73749957 (diff)
downloadperl-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
-rwxr-xr-xMakefile.PL2
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/";