From a47efb6eb7e42333236fa1eadeabe782ae0e0919 Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Mon, 13 Feb 2023 23:55:45 +0800 Subject: [PATCH] libevent: remove autotools dependencies (#9700) Given that the cmake build system is used, we shouldn't have to install the dependencies to use autotools. --- projects/libevent/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/libevent/Dockerfile b/projects/libevent/Dockerfile index de8bed842..17d9b3129 100644 --- a/projects/libevent/Dockerfile +++ b/projects/libevent/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 cmake pkg-config +RUN apt-get update && apt-get install -y cmake make RUN git clone --depth 1 https://github.com/libevent/libevent.git libevent WORKDIR libevent COPY build.sh *.cc *.c $SRC/