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
bd5c22d484:

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
pull/100/head
Fabrice Fontaine 2026-03-12 16:23:09 +01:00 committed by GitHub
parent 823e3e8c88
commit b0c38b4184
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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')