<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/7323f511a5ba68c2d029215eca6d3b3e262bc4a8">https://github.com/macports/macports-ports/commit/7323f511a5ba68c2d029215eca6d3b3e262bc4a8</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 7323f511a5ba68c2d029215eca6d3b3e262bc4a8
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Mon Dec 12 04:37:55 2022 -0600

<span style='display:block; white-space:pre;color:#404040;'>    diffutils-for-muniversal: Use shellescape
</span>---
 sysutils/diffutils-for-muniversal/Portfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/sysutils/diffutils-for-muniversal/Portfile b/sysutils/diffutils-for-muniversal/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index a1a88e829ac..361b7d53ec6 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/sysutils/diffutils-for-muniversal/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/sysutils/diffutils-for-muniversal/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -36,13 +36,13 @@ 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>         }
         if {[string match "*xz*" ${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>         }
     }
 }
</pre><pre style='margin:0'>

</pre>