Commit 485c7805 authored by Max Kellermann's avatar Max Kellermann

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

parent 23802f44
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment