<pre style='margin:0'>
Chris Jones (cjones051073) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/5fa3e8cc43815d5fbdb5d8344a1cfa1cdd076122">https://github.com/macports/macports-ports/commit/5fa3e8cc43815d5fbdb5d8344a1cfa1cdd076122</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 5fa3e8cc438 bazel PG: Only set default c++ standard if newer than current setting
</span>5fa3e8cc438 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 5fa3e8cc43815d5fbdb5d8344a1cfa1cdd076122
</span>Author: Chris Jones <jonesc@macports.org>
AuthorDate: Thu Apr 22 10:26:48 2021 +0100

<span style='display:block; white-space:pre;color:#404040;'>    bazel PG: Only set default c++ standard if newer than current setting
</span>---
 _resources/port1.0/group/bazel-1.0.tcl | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/_resources/port1.0/group/bazel-1.0.tcl b/_resources/port1.0/group/bazel-1.0.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 396e54f760a..845107a4340 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/_resources/port1.0/group/bazel-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/_resources/port1.0/group/bazel-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -74,7 +74,9 @@ destroot.env-append  JAVA_HOME=${java.home}
</span> # Require c++ standard
 proc bazel::set_standards {} {
     global compiler.cxx_standard
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    compiler.cxx_standard [option bazel.cxx_standard]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if { ${compiler.cxx_standard} < [option bazel.cxx_standard] } {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        compiler.cxx_standard [option bazel.cxx_standard]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span> }
 port::register_callback bazel::set_standards
 
</pre><pre style='margin:0'>

</pre>