summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--RPM4/Makefile.PL4
1 files changed, 2 insertions, 2 deletions
diff --git a/RPM4/Makefile.PL b/RPM4/Makefile.PL
index 7e7b34a..a15ba23 100644
--- a/RPM4/Makefile.PL
+++ b/RPM4/Makefile.PL
@@ -4,9 +4,9 @@
use ExtUtils::MakeMaker;
use Getopt::Long;
-#- require at least rpm 4.8
+#- require at least rpm 4.9
my $rpm_version = `LC_ALL=C rpm --version` =~ /version ([0-9.]+)(?:-(?:beta|rc).*)?$/ ? version->new("v$1") : ();
-$rpm_version ge 4.8.0
+$rpm_version ge 4.9.0
or die <<BARF;
Unable to build RPM4 with too old (or undetected) rpm version $rpm_version
BARF