<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/0854dde0c973414686429322df351867ad813f4b">https://github.com/macports/macports-base/commit/0854dde0c973414686429322df351867ad813f4b</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 0854dde0c Fix (dist)clean on systems without clonefile
</span>0854dde0c is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 0854dde0c973414686429322df351867ad813f4b
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Fri Jan 10 11:37:23 2025 +1100

<span style='display:block; white-space:pre;color:#404040;'>    Fix (dist)clean on systems without clonefile
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/71798
</span>---
 vendor/Makefile.in | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/vendor/Makefile.in b/vendor/Makefile.in
</span><span style='display:block; white-space:pre;color:#808080;'>index 9c6691760..e5a023650 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/vendor/Makefile.in
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/vendor/Makefile.in
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -43,12 +43,16 @@ all-tcllib: all-tcl
</span>   @umask 0022; $(MAKE) -C ${INSTALL_SUBDIR} $(@:%-install=%)
 
 DESTROOT_TARGETS=   destroot-tcl destroot-tclx destroot-tcllib
<span style='display:block; white-space:pre;background:#e0ffe0;'>+CLEAN_TARGETS= clean-tcl clean-tcllib clean-tclx clean-signify
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+DISTCLEAN_TARGETS= distclean-tcl distclean-tcllib distclean-tclx distclean-signify
</span> ifneq (@OS_PLATFORM@,linux)
 DESTROOT_TARGETS+=   destroot-signify
 endif
 ifeq (@HAVE_CLONEFILE@,yes)
 ifeq (@HAVE_DECL_CLONE_NOOWNERCOPY@,yes)
 DESTROOT_TARGETS+=   destroot-install
<span style='display:block; white-space:pre;background:#e0ffe0;'>+CLEAN_TARGETS+= clean-install
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+DISTCLEAN_TARGETS+= distclean-install
</span> endif
 endif
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -135,10 +139,10 @@ install-install:
</span> 
 test:
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-clean: clean-tcl clean-tcllib clean-tclx clean-signify clean-install
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+clean: $(CLEAN_TARGETS)
</span>   rm -rf ${DESTROOT}
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-distclean: distclean-tcl distclean-tcllib distclean-tclx distclean-signify distclean-install
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+distclean: $(DISTCLEAN_TARGETS)
</span>   rm -f Makefile
        rm -rf vendor-destroot
        rm -f tclsh
</pre><pre style='margin:0'>

</pre>