From 3d63f21b60b5687f1ebe2a685a7ad205d61d3d6f Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 6 Dec 2017 11:30:06 +0000 Subject: Fix `array` type name c9351ce30c03d107279090da7825096951a705d3 introduced the type as `array`, so mintro should expose it under the same name. (while at it, rename test 169 to be coherent) --- mesonbuild/mintro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild') diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index efa26cf..b23869f 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -140,7 +140,7 @@ def add_keys(optlist, options): optdict['choices'] = opt.choices typestr = 'combo' elif isinstance(opt, coredata.UserArrayOption): - typestr = 'stringarray' + typestr = 'array' else: raise RuntimeError("Unknown option type") optdict['type'] = typestr -- cgit v1.1