<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/a009bb7a667cc6e7cfbece00730fb47043d78d1e">https://github.com/macports/macports-ports/commit/a009bb7a667cc6e7cfbece00730fb47043d78d1e</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 a009bb7a667 minivmac*: Don't use shellescape in MacPorts < 2.6.99
</span>a009bb7a667 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit a009bb7a667cc6e7cfbece00730fb47043d78d1e
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Sun Jun 28 00:09:49 2020 -0500

<span style='display:block; white-space:pre;color:#404040;'>    minivmac*: Don't use shellescape in MacPorts < 2.6.99
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    It's not available yet.
</span>---
 emulators/minivmac-devel/Portfile | 8 ++++++++
 emulators/minivmac/Portfile       | 8 ++++++++
 2 files changed, 16 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/emulators/minivmac-devel/Portfile b/emulators/minivmac-devel/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 80b35fd5a06..da6dd4b329c 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/emulators/minivmac-devel/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/emulators/minivmac-devel/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -114,7 +114,11 @@ if {${my_subport} eq ${my_name}} {
</span>     build.dir                   ${workpath}/build
 
     post-extract {
<span style='display:block; white-space:pre;background:#e0ffe0;'>+if {[vercmp [macports_version] 2.6.99] >= 0} {
</span>         system -W ${workpath} "unzip -q [shellescape ${distpath}/${my_icons_distfile}]"
<span style='display:block; white-space:pre;background:#e0ffe0;'>+} else {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        system -W ${workpath} "unzip -q '${distpath}/${my_icons_distfile}'"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span>     }
 
     post-patch {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -163,7 +167,11 @@ if {${my_subport} eq ${my_name}} {
</span>                 set all_configure_args [concat ${configure.pre_args} ${configure.args} ${configure.post_args}]
 
                 # Run the configure script.
<span style='display:block; white-space:pre;background:#e0ffe0;'>+if {[vercmp [macports_version] 2.6.99] >= 0} {
</span>                 system -W ${build.dir}/${my_variation_dir} "CC=[shellescape ${configure.cc}] CFLAGS=[shellescape ${configure.optflags}] [shellescape ${worksrcpath}/configure] ${all_configure_args}"
<span style='display:block; white-space:pre;background:#e0ffe0;'>+} else {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                system -W ${build.dir}/${my_variation_dir} "CC='${configure.cc}' CFLAGS='${configure.optflags}' '${worksrcpath}/configure' ${all_configure_args}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span> 
                 lappend my_variation_dirs [strsed ${my_variation_dir} {g/ /\\\\ /}]
 
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/emulators/minivmac/Portfile b/emulators/minivmac/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 69f2a797a20..cafb7f1053e 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/emulators/minivmac/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/emulators/minivmac/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -112,7 +112,11 @@ if {${my_subport} eq ${my_name}} {
</span>     build.dir                   ${workpath}/build
 
     post-extract {
<span style='display:block; white-space:pre;background:#e0ffe0;'>+if {[vercmp [macports_version] 2.6.99] >= 0} {
</span>         system -W ${workpath} "unzip -q [shellescape ${distpath}/${my_icons_distfile}]"
<span style='display:block; white-space:pre;background:#e0ffe0;'>+} else {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        system -W ${workpath} "unzip -q '${distpath}/${my_icons_distfile}'"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span>     }
 
     post-patch {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -160,7 +164,11 @@ if {${my_subport} eq ${my_name}} {
</span>                 set all_configure_args [concat ${configure.pre_args} ${configure.args} ${configure.post_args}]
 
                 # Run the configure script.
<span style='display:block; white-space:pre;background:#e0ffe0;'>+if {[vercmp [macports_version] 2.6.99] >= 0} {
</span>                 system -W ${build.dir}/${my_variation_dir} "CC=[shellescape ${configure.cc}] CFLAGS=[shellescape ${configure.optflags}] [shellescape ${worksrcpath}/configure] ${all_configure_args}"
<span style='display:block; white-space:pre;background:#e0ffe0;'>+} else {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                system -W ${build.dir}/${my_variation_dir} "CC='${configure.cc}' CFLAGS='${configure.optflags}' '${worksrcpath}/configure' ${all_configure_args}"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span> 
                 lappend my_variation_dirs [strsed ${my_variation_dir} {g/ /\\\\ /}]
 
</pre><pre style='margin:0'>

</pre>