summaryrefslogtreecommitdiffstats
path: root/scripts/configure_helper.py
diff options
context:
space:
mode:
authorPhilipp Zabel <p.zabel@pengutronix.de>2019-10-17 11:36:33 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-10-17 12:18:07 +0200
commit81652e642f554732e8d4915387e641fceb035183 (patch)
tree5a7623816ee3a30896f837bc44f8c1fab7485c2b /scripts/configure_helper.py
parentf78a8501f24d77d102ef03405894d5bdfe9c4d11 (diff)
downloadptxdist-81652e642f554732e8d4915387e641fceb035183.tar.gz
ptxdist-81652e642f554732e8d4915387e641fceb035183.tar.xz
configure_helper: blacklist --wrap-mode option
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 <p.zabel@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts/configure_helper.py')
-rwxr-xr-xscripts/configure_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py
index bf2bf113b..df1e597b7 100755
--- a/scripts/configure_helper.py
+++ b/scripts/configure_helper.py
@@ -227,7 +227,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: