diff options
author | Max Kellermann <max@musicpd.org> | 2016-10-26 10:40:19 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2016-10-26 17:00:17 +0200 |
commit | 8380c3be02726c68d30bdcb7262bf1655f4d4558 (patch) | |
tree | d840dd65c6d1beacec75ff3b632e5268d1c1a8d2 /python/build/autotools.py | |
parent | 6470bcda1996112a2f5089a7170f9c69857b19d1 (diff) |
python/build/autotools: pass RANLIB to configure
Fixes various static library linker failures ("bad extended name entry
at header"), because the wrong "ranlib" was used.
Diffstat (limited to 'python/build/autotools.py')
-rw-r--r-- | python/build/autotools.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/build/autotools.py b/python/build/autotools.py index 56b4ede59..d9a1f156b 100644 --- a/python/build/autotools.py +++ b/python/build/autotools.py @@ -32,6 +32,7 @@ class AutotoolsProject(Project): 'LDFLAGS=' + toolchain.ldflags, 'LIBS=' + toolchain.libs, 'AR=' + toolchain.ar, + 'RANLIB=' + toolchain.ranlib, 'STRIP=' + toolchain.strip, '--host=' + toolchain.arch, '--prefix=' + toolchain.install_prefix, |