<pre style='margin:0'>
Christopher Nielsen (mascguy) pushed a commit to branch master
in repository macports-legacy-support.
</pre>
<p><a href="https://github.com/macports/macports-legacy-support/commit/301c85757f597325a052ded99ae02b0b44d71d53">https://github.com/macports/macports-legacy-support/commit/301c85757f597325a052ded99ae02b0b44d71d53</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 301c85757f597325a052ded99ae02b0b44d71d53
</span>Author: Fred Wright <fw@fwright.net>
AuthorDate: Wed Nov 6 21:44:50 2024 -0800
<span style='display:block; white-space:pre;color:#404040;'> Makefile: Include ARCHFLAGS for xtests/mantests.
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> The rework of the Makefile recipes dropped this, which impacts
</span><span style='display:block; white-space:pre;color:#404040;'> those test builds for non-default architectures.
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> TESTED:
</span><span style='display:block; white-space:pre;color:#404040;'> ARCHFLAGS is now honored as intended.
</span>---
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
<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 d26e79e..65a9ea2 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;'>@@ -365,7 +365,7 @@ $(TESTSPRGS_C): %_static: %.o $(BUILDSLIBPATH)
</span>
# The "darwin_c" tests need the -fno-builtin option with some compilers.
$(XTESTOBJS_C): %.o: %.c $(ALLHEADERS)
<span style='display:block; white-space:pre;background:#ffe0e0;'>- $(CC) -c -std=c99 -fno-builtin -I$(SRCINCDIR) $(CFLAGS) $< -o $@
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ $(CC) -c -std=c99 -fno-builtin -I$(SRCINCDIR) $(ALLCFLAGS) $< -o $@
</span>
# The xtests don't require the library
$(XTESTPRGS_C): %: %.o
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -374,7 +374,7 @@ $(XTESTPRGS_C): %: %.o
</span> # The "darwin_c" tests need the -fno-builtin option with some compilers.
# It shouldn't hurt the other manual tests.
$(MANTESTOBJS_C): %.o: %.c $(ALLHEADERS)
<span style='display:block; white-space:pre;background:#ffe0e0;'>- $(CC) -c -std=c99 -fno-builtin -I$(SRCINCDIR) $(CFLAGS) $< -o $@
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ $(CC) -c -std=c99 -fno-builtin -I$(SRCINCDIR) $(ALLCFLAGS) $< -o $@
</span>
# Currently, the manual C tests don't require the library
$(MANTESTPRGS_C): %: %.o
</pre><pre style='margin:0'>
</pre>