<pre style='margin:0'>
Ken (kencu) pushed a commit to branch master
in repository macports-legacy-support.

</pre>
<p><a href="https://github.com/macports/macports-legacy-support/commit/9a8c84264e0747ae9323da1a2dbf7f2ceef67a98">https://github.com/macports/macports-legacy-support/commit/9a8c84264e0747ae9323da1a2dbf7f2ceef67a98</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 9a8c84264e0747ae9323da1a2dbf7f2ceef67a98
</span>Author: Christian Cornelssen <ccorn@1tein.de>
AuthorDate: Fri Jan 25 21:27:34 2019 +0100

<span style='display:block; white-space:pre;color:#404040;'>    Makefile: RMDIR bugfix: $ expanded by make instead of shell, need $$
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    The effect of the bug was that the RMDIR script's $d got statically replaced
</span><span style='display:block; white-space:pre;color:#404040;'>    by the value of make's environment's $d, thus typically by an empty string.
</span><span style='display:block; white-space:pre;color:#404040;'>    Therefore "make clean" did not remove the output directory "lib".
</span>---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/Makefile b/Makefile
</span><span style='display:block; white-space:pre;color:#808080;'>index db5e776..e390d50 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/Makefile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/Makefile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -41,7 +41,7 @@ MKINSTALLDIRS    = install -d -m 755
</span> INSTALL_PROGRAM  = install -c -m 755
 INSTALL_DATA     = install -c -m 644
 RM               = rm -f
<span style='display:block; white-space:pre;background:#ffe0e0;'>-RMDIR            = sh -c 'for d; do test ! -d "$d" || rmdir -p "$d"; done' rmdir
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+RMDIR            = sh -c 'for d; do test ! -d "$$d" || rmdir -p "$$d"; done' rmdir
</span> 
 SRCDIR           = src
 SRCINCDIR        = include
</pre><pre style='margin:0'>

</pre>