git: 8bbba9f681ec - main - makeman.lua: catch up to REQUIRED_OPTIONS change
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 22 Apr 2026 02:41:47 UTC
The branch main has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=8bbba9f681ecccc6f6adcdb820c28df71f028e37
commit 8bbba9f681ecccc6f6adcdb820c28df71f028e37
Author: Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2026-04-22 02:29:07 +0000
Commit: Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2026-04-22 02:32:23 +0000
makeman.lua: catch up to REQUIRED_OPTIONS change
161f8edc651c7 ("bsd.mkopt.mk: Prepare a list of all build options")
restructured things and now we should simply strip the leading double
underbar. This fixes the oddity noticed in
4ed20e0236dd0 ("kshim/usb: Add build option."), where WITH_CASPER made
a surprise appearance.
This is a part of D56558, but not the meat of the change.
Reviewed by: emaste, imp
---
tools/build/options/makeman.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/build/options/makeman.lua b/tools/build/options/makeman.lua
index 7ce919f7a8de..af641ff6d638 100644
--- a/tools/build/options/makeman.lua
+++ b/tools/build/options/makeman.lua
@@ -309,7 +309,7 @@ end
local function required_options()
local output = run_make({"-f", "share/mk/src.opts.mk", "-V",
- "__REQUIRED_OPTIONS"})
+ "REQUIRED_OPTIONS"})
local options = {}
for opt in output:gmatch("[^%s]+") do