Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Aug 2021 09:36:36 GMT
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: cc1345056b11 - main - Add missing lex/yacc dependency for mkesdb/mkcsmapper bootstrap
Message-ID:  <202108160936.17G9aajD011044@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by arichardson:

URL: https://cgit.FreeBSD.org/src/commit/?id=cc1345056b113d57f0c65b0ecf3e3d5da3f34276

commit cc1345056b113d57f0c65b0ecf3e3d5da3f34276
Author:     Alex Richardson <arichardson@FreeBSD.org>
AuthorDate: 2021-08-16 08:56:17 +0000
Commit:     Alex Richardson <arichardson@FreeBSD.org>
CommitDate: 2021-08-16 08:57:33 +0000

    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")
---
 Makefile.inc1 | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile.inc1 b/Makefile.inc1
index 2c1f72085110..2b631c2311f0 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -2361,6 +2361,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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108160936.17G9aajD011044>