diff options
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.PL b/Makefile.PL index de082ad..f7271d3 100644 --- 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.2") 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/"; @@ -50,8 +50,7 @@ ChangeLog: } my @rpmflags; -#print $hversion; -if ($hversion ge hexversion(4.4.90) && $hversion lt hexversion(4.5)) { +if ($hversion ge hexversion("4.4.90") && $hversion lt hexversion("4.5")) { # rpm.org version push @rpmflags, "-DRPM_ORG"; } else { |