From 8850049390db266138177ee0158d00155ca46a57 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Sun, 4 Nov 2018 09:12:54 -0600 Subject: [PATCH] docker/bootstrap: Add missing pkg-config for ICU * ARM now gets up to the ICU build failures. (yay?) Change-Id: Iaad978fe86f8cbb57e553bc3584bd8351559c7dc --- 3rdparty/docker/bootstrap/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/3rdparty/docker/bootstrap/Dockerfile b/3rdparty/docker/bootstrap/Dockerfile index ad64a53778..79016b0a11 100644 --- a/3rdparty/docker/bootstrap/Dockerfile +++ b/3rdparty/docker/bootstrap/Dockerfile @@ -12,9 +12,10 @@ RUN apt-get install -y git nasm autoconf automake texinfo flex \ # GCC Requirements RUN apt-get install -y python - # zlib Requirements RUN apt-get install -y cmake +# ICU Requirements +RUN apt-get install -y pkg-config ENV GIT_BUILDTOOLS="https://git.haiku-os.org/buildtools" ENV GIT_HAIKU="https://git.haiku-os.org/haiku"