<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/8afd1fadfb13142d0561b5a590a231cb4b7965eb">https://github.com/macports/macports-ports/commit/8afd1fadfb13142d0561b5a590a231cb4b7965eb</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 8afd1fadfb13142d0561b5a590a231cb4b7965eb
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Mon Dec 12 04:38:13 2022 -0600
<span style='display:block; white-space:pre;color:#404040;'> gcc10-bootstrap: Use shellescape
</span>---
lang/gcc10-bootstrap/Portfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/lang/gcc10-bootstrap/Portfile b/lang/gcc10-bootstrap/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 8b51507b1a2..027d10c1fd4 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/lang/gcc10-bootstrap/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/lang/gcc10-bootstrap/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -70,10 +70,10 @@ extract {
</span> set f [lindex [split ${f} :] 0]
ui_debug "Extracting: ${f}"
if {[string match "*bz2*" ${f}]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>- system -W ${workpath} "/usr/bin/tar xjf ${distpath}/${f}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ system -W ${workpath} "/usr/bin/tar xjf [shellescape ${distpath}/${f}]"
</span> }
if {[string match "*gz*" ${f}]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>- system -W ${workpath} "/usr/bin/tar xzf ${distpath}/${f}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ system -W ${workpath} "/usr/bin/tar xzf [shellescape ${distpath}/${f}]"
</span> }
}
}
</pre><pre style='margin:0'>
</pre>