From 1dfb6e5d1f462af4f4df818ee93766f09f3aa787 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 31 Jul 2021 11:57:21 -0600 Subject: [PATCH] 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 d31e811bbec..82de7d56a41 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} -- 2.45.0