<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/f8d1512cb612df95e3ab22d8991065d4161bf4ba">https://github.com/macports/macports-ports/commit/f8d1512cb612df95e3ab22d8991065d4161bf4ba</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 f8d1512  meschach: Use expansion operator instead of eval
</span>f8d1512 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit f8d1512cb612df95e3ab22d8991065d4161bf4ba
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Sat Oct 6 20:45:16 2018 -0500

<span style='display:block; white-space:pre;color:#404040;'>    meschach: Use expansion operator instead of eval
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Also prefix octal numbers with 0.
</span>---
 math/meschach/Portfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/math/meschach/Portfile b/math/meschach/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 4d7862e..b02e8cb 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/math/meschach/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/math/meschach/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -43,9 +43,9 @@ post-build {
</span> }
 destroot {
          file mkdir ${destroot}${prefix}/include/meschach
<span style='display:block; white-space:pre;background:#ffe0e0;'>-         eval xinstall -m 644 [glob ${worksrcpath}/*.h] ${destroot}${prefix}/include/meschach
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-         eval xinstall [glob ${worksrcpath}/*.a] ${destroot}${prefix}/lib
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-         eval xinstall [glob ${worksrcpath}/*.dylib] ${destroot}${prefix}/lib
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+         xinstall -m 0644 {*}[glob ${worksrcpath}/*.h] ${destroot}${prefix}/include/meschach
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+         xinstall {*}[glob ${worksrcpath}/*.a] ${destroot}${prefix}/lib
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+         xinstall {*}[glob ${worksrcpath}/*.dylib] ${destroot}${prefix}/lib
</span>          ln -s ${prefix}/lib/libmeschach.${branch}.dylib ${destroot}${prefix}/lib/libmeschach.dylib
          ln -s ${prefix}/lib/libmeschach.${branch}.dylib ${destroot}${prefix}/lib/libmeschach.${major}.dylib
          system "cd ${worksrcpath} && ./torture"
</pre><pre style='margin:0'>

</pre>