ports/lang/perl5-devel/files/patch-Configure
Mathieu Arnold 062338767e
lang/perl5-devel: update to latest commit
(cherry picked from commit 9bd6ffdcb83d03f14dd9075b0d8967fe094cba59)
2023-06-24 20:53:28 +02:00

37 lines
961 B
Text

- Allow setting cf_time (reproducible builds)
- ?
- ?
--- Configure.orig 2023-05-16 23:36:32 UTC
+++ Configure
@@ -3907,7 +3907,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`
@@ -5035,7 +5038,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";;
@@ -9586,8 +9589,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~+