From 0beabd6fc7873fa99881b2668b915bf4bea46bab Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Sun, 10 Feb 2019 12:18:37 -0500 Subject: [PATCH] Libxls now requires gettext (#2155) Add `gettext` to the list of libxls's installed packages to prevent errors about `AM_ICONV` during autoconf. --- projects/libxls/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/libxls/Dockerfile b/projects/libxls/Dockerfile index acae704f3..e8681399e 100644 --- a/projects/libxls/Dockerfile +++ b/projects/libxls/Dockerfile @@ -16,7 +16,7 @@ FROM gcr.io/oss-fuzz-base/base-builder MAINTAINER emmiller@gmail.com -RUN apt-get update && apt-get install -y make autoconf automake libtool +RUN apt-get update && apt-get install -y make autoconf automake gettext libtool RUN git clone --depth 1 https://github.com/libxls/libxls libxls WORKDIR libxls