From 485c7805ebabe0985ea0f8fc83faa2610d7a3d87 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 26 Sep 2023 14:30:38 +0200 Subject: [PATCH] python/build/autotools: use list.extend() to append configure_args --- python/build/autotools.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/build/autotools.py b/python/build/autotools.py index 600bb627c..ae0f5f63e 100644 --- a/python/build/autotools.py +++ b/python/build/autotools.py @@ -54,7 +54,9 @@ class AutotoolsProject(MakeProject): '--host=' + toolchain.arch, '--prefix=' + toolchain.install_prefix, '--disable-silent-rules', - ] + self.configure_args + ] + + configure.extend(self.configure_args) try: print(configure)