mirror of
https://git.freebsd.org/ports.git
synced 2025-07-06 20:09:14 -04:00
- 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]
11 lines
314 B
Text
11 lines
314 B
Text
--- 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";;
|