From ac0a229739c290f593059b9cba23689c94cdec94 Mon Sep 17 00:00:00 2001 From: hyperreality Date: Sun, 18 Aug 2019 18:02:13 -0700 Subject: [PATCH] Fix Android build in Docker Fixes issue with libtinfo5 being required by iconv1.15 but not installed by default in latest Debian stable. Tested with a fresh build of the Android image. --- utils/build_scripts/android32.Dockerfile | 2 +- utils/build_scripts/android64.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/build_scripts/android32.Dockerfile b/utils/build_scripts/android32.Dockerfile index e49bdc652..4e4f40276 100644 --- a/utils/build_scripts/android32.Dockerfile +++ b/utils/build_scripts/android32.Dockerfile @@ -1,6 +1,6 @@ FROM debian:stable -RUN apt-get update && apt-get install -y unzip automake build-essential curl file pkg-config git python libtool +RUN apt-get update && apt-get install -y unzip automake build-essential curl file pkg-config git python libtool libtinfo5 WORKDIR /opt/android ## INSTALL ANDROID SDK diff --git a/utils/build_scripts/android64.Dockerfile b/utils/build_scripts/android64.Dockerfile index c4464fa84..90eeb4bae 100644 --- a/utils/build_scripts/android64.Dockerfile +++ b/utils/build_scripts/android64.Dockerfile @@ -1,6 +1,6 @@ FROM debian:stable -RUN apt-get update && apt-get install -y unzip automake build-essential curl file pkg-config git python libtool +RUN apt-get update && apt-get install -y unzip automake build-essential curl file pkg-config git python libtool libtinfo5 WORKDIR /opt/android ## INSTALL ANDROID SDK