<pre style='margin:0'>
Ken (kencu) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/e103e7fb21d0fa4c6d98b693005f0939813b0710">https://github.com/macports/macports-ports/commit/e103e7fb21d0fa4c6d98b693005f0939813b0710</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 e103e7fb21d meson: don't run reinplace on directories
</span>e103e7fb21d is described below
<span style='display:block; white-space:pre;color:#808000;'>commit e103e7fb21d0fa4c6d98b693005f0939813b0710
</span>Author: Ken Cunningham <kencu@macports.org>
AuthorDate: Sun Aug 16 22:07:59 2020 -0700
<span style='display:block; white-space:pre;color:#404040;'> meson: don't run reinplace on directories
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> only the cross files.
</span><span style='display:block; white-space:pre;color:#404040;'> sigh.
</span>---
devel/meson/Portfile | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/meson/Portfile b/devel/meson/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 7613d01c17a..a5c1f6f3850 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/meson/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/meson/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -6,7 +6,7 @@ PortGroup github 1.0
</span>
github.setup mesonbuild meson 0.55.1
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision 0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision 1
</span>
github.tarball_from releases
license Apache-2
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -72,7 +72,9 @@ post-destroot {
</span> copy ${filespath}/cross ${destroot}${prefix}/share/meson/
fs-traverse f ${destroot}${prefix}/share/meson/cross/ {
<span style='display:block; white-space:pre;background:#ffe0e0;'>- reinplace "s|@@PREFIX@@|${prefix}|g" ${f}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ if ![file isdirectory ${f}] {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ reinplace "s|@@PREFIX@@|${prefix}|g" ${f}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ }
</span> }
}
</pre><pre style='margin:0'>
</pre>