File: patch_makefile_pl.diff

package info (click to toggle)
libproc-terminator-perl 0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 120 kB
  • ctags: 16
  • sloc: perl: 236; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 634 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: patch to fix warning on exec build package: Argument "6.57_05"
  isn't numeric in numeric ge (>=) at Makefile.PL line 5.
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=87057
Author: Oleg Gashev <oleg@gashev.net>

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -7,7 +7,7 @@
     AUTHOR              => q{M. Nunberg <mnunberg@haskalah.org>},
     VERSION_FROM        => 'lib/Proc/Terminator.pm',
     ABSTRACT_FROM       => 'lib/Proc/Terminator.pm',
-    ($ExtUtils::MakeMaker::VERSION >= 6.3002
+    ($ExtUtils::MakeMaker::VERSION ge '6.3002'
       ? ('LICENSE'=> 'perl')
       : ()),
     PL_FILES            => {},