<pre style='margin:0'>
Dan Ports (drkp) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/f4a310c857d83ab9477111f15cbb018ca07d5962">https://github.com/macports/macports-ports/commit/f4a310c857d83ab9477111f15cbb018ca07d5962</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 f4a310c  gobject_introspection portgroup: fix for cmake compatibility
</span>f4a310c is described below

<span style='display:block; white-space:pre;color:#808000;'>commit f4a310c857d83ab9477111f15cbb018ca07d5962
</span>Author: Dan R. K. Ports <dports@macports.org>
AuthorDate: Thu Jun 14 19:16:40 2018 -0700

<span style='display:block; white-space:pre;color:#404040;'>    gobject_introspection portgroup: fix for cmake compatibility
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    This lets the portgroup handle braces in configure.cc_archflags, which
</span><span style='display:block; white-space:pre;color:#404040;'>    seem to be introduced by the cmake portgroup. Probably the real
</span><span style='display:block; white-space:pre;color:#404040;'>    problem is that the braces are being added in the first place, but
</span><span style='display:block; white-space:pre;color:#404040;'>    this is a reasonable stopgap measure.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    See https://trac.macports.org/ticket/56637
</span>---
 _resources/port1.0/group/gobject_introspection-1.0.tcl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/_resources/port1.0/group/gobject_introspection-1.0.tcl b/_resources/port1.0/group/gobject_introspection-1.0.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 48dd5ac..4963fdf 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/_resources/port1.0/group/gobject_introspection-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/_resources/port1.0/group/gobject_introspection-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -67,7 +67,7 @@ pre-build {
</span>             #
             # The non-g-ir-scanner parts of the build are assumed to build with
             # the correct -arch flags as determined at configure time.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            build.args-append       CC="${configure.cc} ${configure.cc_archflags}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            build.args-append       CC="${configure.cc} [join ${configure.cc_archflags}]"
</span>         }
 
         # The rules enabled by gobject-introspection require GNU make 3.81+
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -88,7 +88,7 @@ pre-destroot {
</span>         } else {
             # This deliberately does not use [get_canonical_archflags cc]. See
             # explanation in pre-build block.
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            destroot.args-append    CC="${configure.cc} ${configure.cc_archflags}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            destroot.args-append    CC="${configure.cc} [join ${configure.cc_archflags}]"
</span>         }
     }
 }
</pre><pre style='margin:0'>

</pre>