diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/build/autotools.py | 1 | ||||
-rw-r--r-- | python/build/ffmpeg.py | 1 |
2 files changed, 2 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, diff --git a/python/build/ffmpeg.py b/python/build/ffmpeg.py index b3ed215a2..1a5ec3d5f 100644 --- a/python/build/ffmpeg.py +++ b/python/build/ffmpeg.py @@ -34,6 +34,7 @@ class FfmpegProject(Project): '--extra-ldflags=' + toolchain.ldflags, '--extra-libs=' + toolchain.libs, '--ar=' + toolchain.ar, + '--ranlib=' + toolchain.ranlib, '--enable-cross-compile', '--arch=' + arch, '--target-os=' + target_os, |