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
parent
823e3e8c88
commit
b0c38b4184
2
wscript
2
wscript
|
|
@ -45,7 +45,7 @@ system = platform.system().lower()
|
||||||
|
|
||||||
def options(ctx):
|
def options(ctx):
|
||||||
ctx.recurse('protolib')
|
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):
|
def configure(ctx):
|
||||||
ctx.recurse('protolib')
|
ctx.recurse('protolib')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue