<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/6652f6001e3a4908c93dc7d924da95750b18d04b">https://github.com/macports/macports-base/commit/6652f6001e3a4908c93dc7d924da95750b18d04b</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 6652f60  Fix fetch_port with gnutar
</span>6652f60 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 6652f6001e3a4908c93dc7d924da95750b18d04b
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Fri Dec 9 01:43:21 2016 +1100

<span style='display:block; white-space:pre;color:#404040;'>    Fix fetch_port with gnutar
</span>---
 src/macports1.0/macports.tcl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/macports1.0/macports.tcl b/src/macports1.0/macports.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index ac2ba11..f9cceaf 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/macports1.0/macports.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/macports1.0/macports.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1540,7 +1540,7 @@ proc macports::fetch_port {url {local 0}} {
</span>     set tarcmd [findBinary tar $macports::autoconf::tar_path]
     set tarflags [get_tar_flags [file extension $filepath]]
     set qflag $macports::autoconf::tar_q
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    set cmdline [list $tarcmd ${tarflags}${qflag}xOf $filepath +CONTENTS]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set cmdline [list $tarcmd ${tarflags}${qflag}xOf $filepath ./+CONTENTS]
</span>     ui_debug $cmdline
     if {![catch {set contents [exec {*}$cmdline]}]} {
         # the file is probably a valid binary archive
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1568,7 +1568,7 @@ proc macports::fetch_port {url {local 0}} {
</span>     # extract the portfile (and possibly files dir if not a binary archive)
     ui_debug "extracting port archive to [pwd]"
     if {$binary} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        set cmdline [list $tarcmd ${tarflags}${qflag}xOf $filepath +PORTFILE > Portfile]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        set cmdline [list $tarcmd ${tarflags}${qflag}xOf $filepath ./+PORTFILE > Portfile]
</span>     } else {
         set cmdline [list $tarcmd ${tarflags}${qflag}xf $filepath]
     }
</pre><pre style='margin:0'>

</pre>