python/build/autotools: use list.extend() to append configure_args
This commit is contained in:
parent
23802f4489
commit
485c7805eb
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue