From 760cc3f73c4046e239040db1876da050ece1220a Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 9 Jun 2012 14:51:37 +0000 Subject: fix build with rpm-4.10.0 git-svn-id: svn+ssh://haiku.zarb.org/home/projects/rpm4/svn/trunk@184 971eb68f-4bfb-0310-8326-d2484c010a4c --- RPM4/Makefile.PL | 5 ++--- RPM4/NEWS | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/RPM4/Makefile.PL b/RPM4/Makefile.PL index 48f1908..0f15e6e 100644 --- a/RPM4/Makefile.PL +++ b/RPM4/Makefile.PL @@ -5,9 +5,8 @@ use ExtUtils::MakeMaker; use Getopt::Long; #- require at least rpm 4.2 -my $rpm_version = `rpm --version`; -$rpm_version =~ s/RPM version //; -$rpm_version =~ /^(?:[5-9]|\d{2}|4\.[2-9])/ +my $rpm_version = `rpm --version` =~ /version ([0-9.]+)$/ ? version->new("v$1") : (); +$rpm_version ge 4.6.0 or die <build works with rpm-4.9 -- cgit v1.2.1