mirror of
https://git.freebsd.org/ports.git
synced 2025-05-17 01:23:12 -04:00
Changes: https://github.com/Perl/perl5/compare/v5.25.8-128-g74ef8fd...v5.25.8-184-g8f7edc6 Sponsored by: Absolight
33 lines
906 B
Text
33 lines
906 B
Text
--- Configure.orig 2017-01-09 00:09:50 UTC
|
|
+++ Configure
|
|
@@ -3880,7 +3880,10 @@ esac
|
|
. ./posthint.sh
|
|
|
|
: who configured the system
|
|
-cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
|
|
+case "$cf_time" in
|
|
+"")
|
|
+ cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1` ;;
|
|
+esac
|
|
case "$cf_by" in
|
|
"")
|
|
cf_by=`(logname) 2>/dev/null`
|
|
@@ -5061,7 +5064,7 @@ esac
|
|
: Now check and see which directories actually exist, avoiding duplicates
|
|
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";;
|
|
@@ -9656,8 +9659,7 @@ prefixvar=siteman3dir
|
|
|
|
: determine where add-on public executable scripts go
|
|
case "$sitescript" in
|
|
-'') dflt=$siteprefix/script
|
|
- $test -d $dflt || dflt=$sitebin ;;
|
|
+'') dflt=$sitebin ;;
|
|
*) dflt="$sitescript" ;;
|
|
esac
|
|
fn=d~+
|