<pre style='margin:0'>
Jeremy Huddleston Sequoia (jeremyhu) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/2eac8d6a35dce2ca2e7eeaa5848933b5c57498cd">https://github.com/macports/macports-base/commit/2eac8d6a35dce2ca2e7eeaa5848933b5c57498cd</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 2eac8d6  portutil: Fix scary copy-pasteo about failures when the CLTools package is not installed.
</span>2eac8d6 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 2eac8d6a35dce2ca2e7eeaa5848933b5c57498cd
</span>Author: Jeremy Huddleston Sequoia <jeremyhu@macports.org>
AuthorDate: Sun Mar 5 14:37:31 2017 -0800

<span style='display:block; white-space:pre;color:#404040;'>    portutil: Fix scary copy-pasteo about failures when the CLTools package is not installed.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    We should probably not be warning about this at all.  Most ports should
</span><span style='display:block; white-space:pre;color:#404040;'>    build fine without the CLTools, and we should fix cases where they do not.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@macports.org>
</span>---
 src/port1.0/portutil.tcl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port1.0/portutil.tcl b/src/port1.0/portutil.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index a5b5e1c..ebcbc78 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port1.0/portutil.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port1.0/portutil.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -3221,11 +3221,11 @@ proc _check_xcode_version {} {
</span>             # Check whether /usr/include and /usr/bin/make exist and tell users to install the command line tools, if they don't
             if {   ![file isdirectory [file join $cltpath usr include]]
                 || ![file executable  [file join $cltpath usr bin make]]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                ui_warn "The Xcode Command Line Tools don't appear to be installed; most ports will likely fail to build."
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                ui_warn "The system headers do not appear to be installed.  While most ports should build correctly against an SDK, some ports still have a dependency on system headers and will fail to build.  Please file tickets about such failures at https://trac.macports.org."
</span>                 if {[vercmp $macosx_version 10.9] >= 0} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    ui_warn "Install them by running `xcode-select --install'."
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    ui_warn "You can install them as part of the Xcode Command Line Tools package by running `xcode-select --install'."
</span>                 } else {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    ui_warn "You can install them from Xcode's Preferences in the Downloads section."
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    ui_warn "You can install them as part of the Xcode Command Line Tools package from Xcode's Preferences in the Downloads section."
</span>                     ui_warn "See https://guide.macports.org/chunked/installing.xcode.html#installing.xcode.lion.43 for more information."
                 }
             }
</pre><pre style='margin:0'>

</pre>