diff options
author | hyperreality <hyperreality_monero@protonmail.com> | 2019-08-18 18:02:13 -0700 |
---|---|---|
committer | hyperreality <hyperreality_monero@protonmail.com> | 2019-08-18 18:02:13 -0700 |
commit | ac0a229739c290f593059b9cba23689c94cdec94 (patch) | |
tree | f1bc3a3cd85261502fdcc773c9ab36873c2ece31 /utils | |
parent | Merge pull request #5779 (diff) | |
download | monero-ac0a229739c290f593059b9cba23689c94cdec94.tar.xz |
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.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/build_scripts/android32.Dockerfile | 2 | ||||
-rw-r--r-- | 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 |