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)