<pre style='margin:0'>
Landon Fuller (landonf) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/132acd2982ac60a3d52f661a06748fdacf207e81">https://github.com/macports/macports-ports/commit/132acd2982ac60a3d52f661a06748fdacf207e81</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 132acd2982a openjdk: fix configure.build_arch-based temurin/zulu dependency selection on arm64
</span>132acd2982a is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 132acd2982ac60a3d52f661a06748fdacf207e81
</span>Author: Landon Fuller <landonf@macports.org>
AuthorDate: Tue Aug 10 22:39:56 2021 -0600

<span style='display:block; white-space:pre;color:#404040;'>    openjdk: fix configure.build_arch-based temurin/zulu dependency selection on arm64
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Without this, `supported_archs` is set to x86_64 for all openjdk meta
</span><span style='display:block; white-space:pre;color:#404040;'>    ports. This overrides the default configure.build_arch, and thus the
</span><span style='display:block; white-space:pre;color:#404040;'>    wrong runtime-dependency is registered.
</span>---
 java/openjdk/Portfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/java/openjdk/Portfile b/java/openjdk/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index af44640a6fe..5da913b12e7 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/java/openjdk/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/java/openjdk/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -11,7 +11,7 @@ license          GPL-2 NoMirror
</span> # These ports use prebuilt binaries for a particular architecture, they are not universal binaries
 universal_variant no
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {[string match *-zulu ${subport}]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {[regexp {openjdk[0-9]*(-zulu)?$} ${subport}]} {
</span>     supported_archs  x86_64 arm64
 } else {
     supported_archs  x86_64
</pre><pre style='margin:0'>

</pre>