From b0c38b4184f0998b955cf03cbd2dfb0216f6c795 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Thu, 12 Mar 2026 16:23:09 +0100 Subject: [PATCH] wscript: fix build with waf >= 2.1.0 (#86) Replace add_option_group by add_argument_group to a build failure with waf 2.1.0 and https://gitlab.com/ita1024/waf/-/commit/bd5c22d484734f7c1b77e16c91a10c7a44fa6c8a: Signed-off-by: Fabrice Fontaine --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index d8e9ef1..eda5d13 100755 --- a/wscript +++ b/wscript @@ -45,7 +45,7 @@ system = platform.system().lower() def options(ctx): ctx.recurse('protolib') - build_opts = ctx.parser.add_option_group('Compile/install Options', 'Use during build/install step.') + build_opts = ctx.parser.add_argument_group('Compile/install Options', 'Use during build/install step.') def configure(ctx): ctx.recurse('protolib')