From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from dude02.hi.pengutronix.de ([2001:67c:670:100:1d::28] helo=dude02.pengutronix.de.) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1iL2Cy-0007Bp-6Z for ptxdist@pengutronix.de; Thu, 17 Oct 2019 11:36:36 +0200 From: Philipp Zabel Date: Thu, 17 Oct 2019 11:36:33 +0200 Message-Id: <20191017093633.31146-1-p.zabel@pengutronix.de> MIME-Version: 1.0 Subject: [ptxdist] [PATCH] configure_helper: blacklist --wrap-mode option List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de 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 --- 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 ptxdist@pengutronix.de