<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/7c94dcc2add3426ec6f99588ba4f713bc14778ec">https://github.com/macports/macports-ports/commit/7c94dcc2add3426ec6f99588ba4f713bc14778ec</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 7c94dcc2add python310: fix build on case-sensitive FS
</span>7c94dcc2add is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 7c94dcc2add3426ec6f99588ba4f713bc14778ec
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Tue May 10 12:50:47 2022 +1000

<span style='display:block; white-space:pre;color:#404040;'>    python310: fix build on case-sensitive FS
</span>---
 lang/python310/Portfile | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/lang/python310/Portfile b/lang/python310/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 07ccf08d378..3fb2e48d705 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/lang/python310/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/lang/python310/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -153,7 +153,13 @@ platform darwin {
</span>         reinplace "s|-lintl ||" \
             ${destroot}${framewdir}/lib/python${branch}/_sysconfigdata__darwin_darwin.py
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        system -W ${worksrcpath} "env DYLD_FRAMEWORK_PATH=. ./python.exe -E -m compileall -d [shellescape ${framewdir}/lib/python${branch}] -o 0 -o 1 -o 2 [shellescape ${destroot}${framewdir}/lib/python${branch}/_sysconfigdata__darwin_darwin.py]"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # executable differs depending on filesystem case sensitivity
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        foreach p {python.exe python} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            if {[file exists ${worksrcpath}/${p}]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                set python_for_build $p
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        system -W ${worksrcpath} "env DYLD_FRAMEWORK_PATH=. ./${python_for_build} -E -m compileall -d [shellescape ${framewdir}/lib/python${branch}] -o 0 -o 1 -o 2 [shellescape ${destroot}${framewdir}/lib/python${branch}/_sysconfigdata__darwin_darwin.py]"
</span>     }
 }
 
</pre><pre style='margin:0'>

</pre>