From 8dfc2723ba4007bf0eed1adaf74f361e263603ff Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Thu, 13 Oct 2022 16:57:26 -0400 Subject: [PATCH] Speculative fix for proj4 in CIFuzz. (#8771) Related: #8647 --- projects/proj4/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/proj4/Dockerfile b/projects/proj4/Dockerfile index 32fab78d6..70ea99bdf 100644 --- a/projects/proj4/Dockerfile +++ b/projects/proj4/Dockerfile @@ -18,13 +18,13 @@ FROM gcr.io/oss-fuzz-base/base-builder RUN apt-get update && \ apt-get install -y make autoconf automake libtool g++ sqlite3 pkg-config wget -RUN git clone --depth 1 https://github.com/OSGeo/proj proj +RUN git clone --depth 1 https://github.com/OSGeo/PROJ PROJ -RUN git clone --depth 1 https://github.com/curl/curl.git proj/curl +RUN git clone --depth 1 https://github.com/curl/curl.git PROJ/curl -RUN git clone --depth 1 https://gitlab.com/libtiff/libtiff.git proj/libtiff +RUN git clone --depth 1 https://gitlab.com/libtiff/libtiff.git PROJ/libtiff -WORKDIR proj +WORKDIR PROJ RUN cp test/fuzzers/build.sh $SRC/ # This is to fix Fuzz Introspector build by using LLVM old pass manager