diff options
author | Sergey Skvortsov <skv@FreeBSD.org> | 2010-07-14 17:24:21 +0000 |
---|---|---|
committer | Sergey Skvortsov <skv@FreeBSD.org> | 2010-07-14 17:24:21 +0000 |
commit | 491a15ba6972d779d62337b9ea3b250324f5e85a (patch) | |
tree | e77896baf9c6ec518df75c295fd2269879cb1b4c /lang/perl5.10/files/patch-Configure | |
parent | Add libSM and libICE in the dependency as those will be linked when those (diff) |
- Fix generation of '+CONTENTS' file for 'bsdpan-*' packages [1]
- Don't remove '/usr/local/lib' from path $libpth
if this dir does not exist [2]
PR: ports/116908 [1]
Submitted by: Steve Wills <steve@mouf.net> [1],
Kukushkin Konstantin <dark@ramtel.ru> [2]
Notes
Notes:
svn path=/head/; revision=257756
Diffstat (limited to 'lang/perl5.10/files/patch-Configure')
-rw-r--r-- | lang/perl5.10/files/patch-Configure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/perl5.10/files/patch-Configure b/lang/perl5.10/files/patch-Configure new file mode 100644 index 000000000000..0abb559cbc33 --- /dev/null +++ b/lang/perl5.10/files/patch-Configure @@ -0,0 +1,11 @@ +--- Configure.orig 2010-07-14 15:28:45.000000000 +0000 ++++ Configure 2010-07-14 15:29:23.000000000 +0000 +@@ -4780,7 +4780,7 @@ + libpth='' + for xxx in $dlist + do +- if $test -d $xxx; then ++ if $test -d $xxx || [ $xxx = $prefix/lib ]; then + case " $libpth " in + *" $xxx "*) ;; + *) libpth="$libpth $xxx";; |