diff options
author | crees <crees@FreeBSD.org> | 2014-08-29 01:53:39 +0800 |
---|---|---|
committer | crees <crees@FreeBSD.org> | 2014-08-29 01:53:39 +0800 |
commit | 69da98e674d2dab2773e1ee39a0899ca6e63207f (patch) | |
tree | 8c38280fd2a2a4c9e36cf598e7e629a3ada3cb34 /x11-clocks/intclock | |
parent | 730ad2139c9ceee482c21a2795685cfcc9d3b625 (diff) | |
download | freebsd-ports-gnome-69da98e674d2dab2773e1ee39a0899ca6e63207f.tar.gz freebsd-ports-gnome-69da98e674d2dab2773e1ee39a0899ca6e63207f.tar.zst freebsd-ports-gnome-69da98e674d2dab2773e1ee39a0899ca6e63207f.zip |
Fix with perl-5.18
PR: ports/193064
Diffstat (limited to 'x11-clocks/intclock')
-rw-r--r-- | x11-clocks/intclock/files/patch-Makefile.PL | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-clocks/intclock/files/patch-Makefile.PL b/x11-clocks/intclock/files/patch-Makefile.PL new file mode 100644 index 000000000000..a786ea32a478 --- /dev/null +++ b/x11-clocks/intclock/files/patch-Makefile.PL @@ -0,0 +1,11 @@ +--- ./Makefile.PL.orig 2014-08-28 18:50:07.282934874 +0100 ++++ ./Makefile.PL 2014-08-28 18:50:28.962268980 +0100 +@@ -33,7 +33,7 @@ + # preliminary checks + #------------------------------------------------------------------------ + # Mandatory perl modules +-foreach my $module qw(Data::Dumper Time::HiRes Locale::Maketext) { ++foreach my $module (qw(Data::Dumper Time::HiRes Locale::Maketext)) { + print "Checking whether $module perl module is available... "; + eval "use $module"; + if ($@) { |