diff options
author | aaron <aaron@FreeBSD.org> | 2006-06-17 02:30:56 +0800 |
---|---|---|
committer | aaron <aaron@FreeBSD.org> | 2006-06-17 02:30:56 +0800 |
commit | 181620d681ca94146d2f8e25916640ba15cfe59b (patch) | |
tree | 6136faf83c354c6751175224364889aab06b81be /math | |
parent | 032830c366210fa442c44b4da34ac18a509b13f1 (diff) | |
download | freebsd-ports-gnome-181620d681ca94146d2f8e25916640ba15cfe59b.tar.gz freebsd-ports-gnome-181620d681ca94146d2f8e25916640ba15cfe59b.tar.zst freebsd-ports-gnome-181620d681ca94146d2f8e25916640ba15cfe59b.zip |
- Fix intermittent build error
Approved by: tobez (implicit)
Diffstat (limited to 'math')
-rw-r--r-- | math/p5-Math-Cephes/files/patch-Makefile.PL | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/math/p5-Math-Cephes/files/patch-Makefile.PL b/math/p5-Math-Cephes/files/patch-Makefile.PL new file mode 100644 index 000000000000..0468c77415ab --- /dev/null +++ b/math/p5-Math-Cephes/files/patch-Makefile.PL @@ -0,0 +1,13 @@ +--- Makefile.PL.orig Wed Dec 31 00:57:31 2003 ++++ Makefile.PL Fri Jun 16 12:05:48 2006 +@@ -23,8 +23,8 @@ + # fool WriteMakefile into thinking there's a libmd lib + my $lib = 'libmd' . $Config{lib_ext}; + my $dummy = catfile $libmd, $lib; +-open(DUMMY, ">$dummy") or die "Cannot create $dummy: $!"; +-close DUMMY; ++#open(DUMMY, ">$dummy") or die "Cannot create $dummy: $!"; ++#close DUMMY; + + my %opts = ( + NAME => 'Math::Cephes', |