<pre style='margin:0'>
Herby Gillot (herbygillot) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/95e61cfbaf8a94259128874af438d8d26c4f9299">https://github.com/macports/macports-ports/commit/95e61cfbaf8a94259128874af438d8d26c4f9299</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 95e61cfbaf8 clang-11-bootstrap: escape path name
</span>95e61cfbaf8 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 95e61cfbaf8a94259128874af438d8d26c4f9299
</span>Author: Kirill A. Korinsky <kirill@korins.ky>
AuthorDate: Tue May 23 13:02:01 2023 +0200

<span style='display:block; white-space:pre;color:#404040;'>    clang-11-bootstrap: escape path name
</span>---
 lang/clang-11-bootstrap/Portfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/lang/clang-11-bootstrap/Portfile b/lang/clang-11-bootstrap/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 3b917326b4b..df9c9e2b16f 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/lang/clang-11-bootstrap/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/lang/clang-11-bootstrap/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -272,12 +272,12 @@ if {${os.platform} eq "darwin" && ${os.major} < 18} {
</span> 
             set gcc [open "${workpath}/bins/gcc" w 0755]
             puts ${gcc} "#!/bin/sh"
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            puts ${gcc} "arch -arch $\{BUILD_ARCH:-${build_arch}\} ${prefix}/libexec/gcc10-bootstrap/bin/gcc \$@"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            puts ${gcc} "arch -arch $\{BUILD_ARCH:-${build_arch}\} ${prefix}/libexec/gcc10-bootstrap/bin/gcc \"\$@\""
</span>             close ${gcc}
 
             set gxx [open "${workpath}/bins/g++" w 0755]
             puts ${gxx} "#!/bin/sh"
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            puts ${gxx} "arch -arch $\{BUILD_ARCH:-${build_arch}\} ${prefix}/libexec/gcc10-bootstrap/bin/g++ \$@"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            puts ${gxx} "arch -arch $\{BUILD_ARCH:-${build_arch}\} ${prefix}/libexec/gcc10-bootstrap/bin/g++ \"\$@\""
</span>             close ${gxx}
         }
 
</pre><pre style='margin:0'>

</pre>