From 1aae37e547f5412eff6d47d72c1a9dca4c01acce Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Wed, 15 Feb 2023 09:15:58 +0800 Subject: [PATCH] expat: remove autotools build dependencies (#9706) Expat is built using cmake, so autotools and friends should not be required. --- projects/expat/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/expat/Dockerfile b/projects/expat/Dockerfile index b9aedc9ae..57bee1af5 100644 --- a/projects/expat/Dockerfile +++ b/projects/expat/Dockerfile @@ -15,7 +15,7 @@ ################################################################################ FROM gcr.io/oss-fuzz-base/base-builder -RUN apt-get update && apt-get install -y make autoconf automake libtool docbook2x cmake +RUN apt-get update && apt-get install -y cmake docbook2x make RUN git clone --depth 1 https://github.com/libexpat/libexpat expat WORKDIR expat