python/build/autotools: use list.extend() to append configure_args

This commit is contained in:
Max Kellermann 2023-09-26 14:30:38 +02:00
parent 23802f4489
commit 485c7805eb
1 changed files with 3 additions and 1 deletions

View File

@ -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)