Since commit bc0fa4939589 ("Rules: don't allow meson to download
anything"), --wrap-mode nodownload is unconditionally added to all
Meson options. Don't show it to the user as something to remove
from the tested recipe.Signed-off-by: Philipp Zabel <[email protected]> --- scripts/configure_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py index c7b46f3b3846..02df905faa76 100755 --- a/scripts/configure_helper.py +++ b/scripts/configure_helper.py @@ -222,7 +222,7 @@ def parse_meson_args(args, blacklist): name = last value = arg # Most --* args show up as generic arguments at the end - if name != "cross-file": + if name != "cross-file" and name != "wrap-mode": last_args.append("-D%s=%s" % (name, value)) last = None else: -- 2.20.1 _______________________________________________ ptxdist mailing list [email protected]
