<pre style='margin:0'>
Ryan Schmidt (ryandesign) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/d6b0fd32f47d922b16ef8c0fec5c79b23f0c617e">https://github.com/macports/macports-ports/commit/d6b0fd32f47d922b16ef8c0fec5c79b23f0c617e</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 d6b0fd32 highlight: Disable parallel build
</span>d6b0fd32 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit d6b0fd32f47d922b16ef8c0fec5c79b23f0c617e
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Wed Jun 5 15:13:35 2019 -0500

<span style='display:block; white-space:pre;color:#404040;'>    highlight: Disable parallel build
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    The build system evidently doesn't declare its dependencies correctly.
</span><span style='display:block; white-space:pre;color:#404040;'>    As a result, several source files end up getting built more than once.
</span><span style='display:block; white-space:pre;color:#404040;'>    When it comes time to run ar on the object files, the multiple
</span><span style='display:block; white-space:pre;color:#404040;'>    simultaneous ar commands can end up corrupting the object files.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/58556
</span>---
 textproc/highlight/Portfile | 2 ++
 1 file changed, 2 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/textproc/highlight/Portfile b/textproc/highlight/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 9bd38b3..eee2d1d 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/textproc/highlight/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/textproc/highlight/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -37,6 +37,8 @@ if {[string match *clang* ${configure.cxx}]} {
</span> }
 configure.cxxflags-append -std=c++11
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+use_parallel_build  no
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> # Yes, this project's makefile uses CFLAGS to compile its C++ code.
 build.args          CXX="${configure.cxx}" \
                     CFLAGS="${configure.cxxflags} [get_canonical_archflags cxx]" \
</pre><pre style='margin:0'>

</pre>