aboutsummaryrefslogtreecommitdiff
path: root/projects/libxls
diff options
context:
space:
mode:
authorEvan Miller <emmiller@gmail.com>2019-02-10 12:18:37 -0500
committerAbhishek Arya <inferno@chromium.org>2019-02-10 09:18:37 -0800
commit0beabd6fc7873fa99881b2668b915bf4bea46bab (patch)
tree020536ae2e00ec8ae3d21e370c80c6ed34428b56 /projects/libxls
parent4e6082959806ce221e2040904a93ed294b193c60 (diff)
downloadoss-fuzz-0beabd6fc7873fa99881b2668b915bf4bea46bab.tar.gz
Libxls now requires gettext (#2155)
Add `gettext` to the list of libxls's installed packages to prevent errors about `AM_ICONV` during autoconf.
Diffstat (limited to 'projects/libxls')
-rw-r--r--projects/libxls/Dockerfile2
1 files changed, 1 insertions, 1 deletions
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