From d2b635eb555d9c208028ea862604591c0973f268 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 25 Mar 2026 15:41:28 +0900 Subject: [PATCH] cmd/mbf: correctly describe --with-toolchain The behaviour of this was changed to include the stage2 toolchain instead, but the help text was never updated. Signed-off-by: Ophestra --- cmd/mbf/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go index ce2f77b5..70a7f19e 100644 --- a/cmd/mbf/main.go +++ b/cmd/mbf/main.go @@ -642,7 +642,7 @@ func main() { Flag( &flagWithToolchain, "with-toolchain", command.BoolFlag(false), - "Include the stage3 LLVM toolchain", + "Include the stage2 LLVM toolchain", ) }