<pre style='margin:0'>
Marcus Calhoun-Lopez (MarcusCalhoun-Lopez) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/e29a5f6e463be4575da587e34bd48a4915df4b0a">https://github.com/macports/macports-ports/commit/e29a5f6e463be4575da587e34bd48a4915df4b0a</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 e29a5f6  tcl: Don't let TCL_CC contain ccache
</span>e29a5f6 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit e29a5f6e463be4575da587e34bd48a4915df4b0a
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Wed Jul 10 14:27:14 2019 -0500

<span style='display:block; white-space:pre;color:#404040;'>    tcl: Don't let TCL_CC contain ccache
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    TCL_CC in tclConfig.sh contains the compiler that was used to compile Tcl.
</span><span style='display:block; white-space:pre;color:#404040;'>    If ccache was used when compiling Tcl, then TCL_CC will have "ccache "
</span><span style='display:block; white-space:pre;color:#404040;'>    before the compiler path. If you later use tclConfig.sh to compile something
</span><span style='display:block; white-space:pre;color:#404040;'>    else, but you no longer have ccache installed, the build will fail.
</span>---
 lang/tcl/Portfile | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/lang/tcl/Portfile b/lang/tcl/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 2eb8f4d..ba6e5b7 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/lang/tcl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/lang/tcl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,7 +4,7 @@ PortSystem          1.0
</span> 
 name                tcl
 version             8.6.9
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision            1
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            2
</span> # Tk (x11/tk) port depends on this version
 categories          lang
 license             Tcl/Tk
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -51,6 +51,10 @@ destroot.destdir    INSTALL_ROOT=${destroot}
</span> post-destroot {
     ln -s tclsh8.6 ${destroot}${prefix}/bin/tclsh
     ln -s libtcl8.6.dylib ${destroot}${prefix}/lib/libtcl.dylib
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if {${configure.ccache}} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {/TCL_CC/s/ccache //} ${destroot}${prefix}/lib/tclConfig.sh
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span> }
 
 variant threads description {add multithreading support} {
</pre><pre style='margin:0'>

</pre>