diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2002-07-10 16:06:00 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2002-07-10 16:06:00 +0000 |
commit | 6bab76381cc817cb9e4a03148123cc5e48a6fe92 (patch) | |
tree | aa52977d0ff18fd6ca89abda7e4b79bd0b1ad8fa /lang/perl5/files/patch-Install.pm | |
parent | Fix build on post-4.6 stable (do not declare shmat). (diff) |
1. Merge from src/contrib/perl5/lib/ExtUtils/Attic/Install.pm rev. 1.2:
Force installs. This is to allow (semi-)automatic garbage removal by
"find /usr/libdata -ctime -N -delete".
Well - substitute /usr/libdata with /usr/local/lib/perl5 here.
Requested by: sheldonh
2. Do not link with libbind even if Configure detects it. A particular
reason for that is that perl's getpw* stop working with NIS.
Reported by: Russell Cattelan <cattelan@thebarn.com>
Notes
Notes:
svn path=/head/; revision=62775
Diffstat (limited to 'lang/perl5/files/patch-Install.pm')
-rw-r--r-- | lang/perl5/files/patch-Install.pm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/lang/perl5/files/patch-Install.pm b/lang/perl5/files/patch-Install.pm index 06bef472a7cf..fbadbd183e20 100644 --- a/lang/perl5/files/patch-Install.pm +++ b/lang/perl5/files/patch-Install.pm @@ -1,7 +1,14 @@ -$FreeBSD$ - ---- lib/ExtUtils/Install.pm.orig Sun Jun 16 13:36:29 2002 -+++ lib/ExtUtils/Install.pm Sun Jun 16 13:36:50 2002 +--- lib/ExtUtils/Install.pm.orig Fri Feb 23 03:57:55 2001 ++++ lib/ExtUtils/Install.pm Wed Jul 10 17:57:13 2002 +@@ -132,7 +132,7 @@ + $diff++; + } + +- if ($diff){ ++ if ($diff||1){ + if (-f $targetfile){ + forceunlink($targetfile) unless $nonono; + } else { @@ -156,7 +156,7 @@ } else { inc_uninstall($_,$File::Find::dir,$verbose,0); # nonono set to 0 |