aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Richardson <arichardson@FreeBSD.org>2021-08-16 08:56:17 +0000
committerAlex Richardson <arichardson@FreeBSD.org>2021-08-18 08:34:11 +0000
commitba91a76793d9a385e53d8bed00c0da806a5a60e7 (patch)
treea6e3d61c819e8499c55bdc0d33e3c5093e0e2009
parentd1d9ee6f781d4ff4ca487c48f92e186e2f07b378 (diff)
Add missing lex/yacc dependency for mkesdb/mkcsmapper bootstrap
This causes build failures on macOS where the build can end up invoking an incompatible m4 binary. Fxies: 2de949cf85d0 ("Remove mkcsmapper_static and mkesdb_static from build-tools") (cherry picked from commit cc1345056b113d57f0c65b0ecf3e3d5da3f34276)
-rw-r--r--Makefile.inc12
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index cc854fbebbb1..941589324a80 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -2373,6 +2373,8 @@ ${_bt}-usr.bin/localedef: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
.if ${MK_ICONV} != "no"
_mkesdb= usr.bin/mkesdb
_mkcsmapper= usr.bin/mkcsmapper
+${_bt}-usr.bin/mkesdb: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
+${_bt}-usr.bin/mkcsmapper: ${_bt}-usr.bin/yacc ${_bt_lex_depend}
.endif
.if ${MK_KERBEROS} != "no"