The branch stable/12 has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=1dfb6e5d1f462af4f4df818ee93766f09f3aa787
commit 1dfb6e5d1f462af4f4df818ee93766f09f3aa787 Author: Warner Losh <[email protected]> AuthorDate: 2021-07-31 17:57:21 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2021-07-31 18:05:34 +0000 awk: merge fixes to metamode This is a partial MFC of c63c5ab001106/r349062. The whole thing doesn't apply cleanly, but this bit, at least, is needed to fix metamode on stable/12 after the changes to awk were merged from head. Rather than risk breaking other things, I'm just merging the bit I know that's needed. All build tools need to be in DEPENDOBJ so the dependency order is correct and they get built with host tools. Reported by: kp Sponsored by: Netflix --- usr.bin/awk/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/awk/Makefile b/usr.bin/awk/Makefile index d31e811bbec5..82de7d56a415 100644 --- a/usr.bin/awk/Makefile +++ b/usr.bin/awk/Makefile @@ -25,6 +25,7 @@ awkgram.tab.h: awkgram.h proctab.c: maketab ${BTOOLSPATH:U.}/maketab awkgram.h > proctab.c +DEPENDOBJS+= maketab build-tools: maketab maketab: awkgram.tab.h maketab.c ${BUILD_TOOLS_META} _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
