mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 11:20:46 -04:00
GNU make is not required for the build, but the test suite assumes
this particular implementation in several places. While they could
be patched, some of these changes won't be easily upstreamable I'm
afraid, so let's just USES+=gmake for the time being.
Drop the `post-patch' target added in commit 0c0c5d528f
(n243249)
to prevent bogus makeinfo(1) banner propagation as this problem no
longer exhibits itself.
Reported by: portscout
11 lines
351 B
Text
11 lines
351 B
Text
--- Makefile.in.orig 2023-05-07 18:29:33 UTC
|
|
+++ Makefile.in
|
|
@@ -1306,7 +1306,7 @@ install-exec-hook:
|
|
if [ ! -f gawk-$(VERSION)$(EXEEXT) ]; \
|
|
then $(LN) $${name}$(EXEEXT) gawk-$(VERSION)$(EXEEXT) 2>/dev/null ; \
|
|
fi; \
|
|
- if [ ! -f awk$(EXEEXT) ]; \
|
|
+ if ! /usr/bin/which -s awk; \
|
|
then $(LN_S) $${name}$(EXEEXT) awk$(EXEEXT); \
|
|
fi; exit 0)
|
|
|