aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar Abhishek Arya <inferno@chromium.org>2020-11-17 08:39:30 -0800
committerGravatar GitHub <noreply@github.com>2020-11-17 08:39:30 -0800
commita3356cbb7caaffa96302671a2fc0896a32ee864c (patch)
treed0e768a40265b8beb04e5e11f32304e0dcc45da4 /infra
parent88251fcd5cb640feb442da7b08ecf0e576d56a75 (diff)
Fix CLANG_BIN path for atheris
Diffstat (limited to 'infra')
-rw-r--r--infra/base-images/base-clang/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/base-images/base-clang/Dockerfile b/infra/base-images/base-clang/Dockerfile
index d7276412..b5343b8e 100644
--- a/infra/base-images/base-clang/Dockerfile
+++ b/infra/base-images/base-clang/Dockerfile
@@ -34,7 +34,7 @@ RUN /root/checkout_build_install_llvm.sh
RUN rm /root/checkout_build_install_llvm.sh
# Install Atheris (used for Python fuzzing).
-RUN CLANG_BIN=`which clang` pip3 install atheris
+RUN CLANG_BIN=/usr/local/bin/clang pip3 install atheris
# Setup the environment.
ENV CC "clang"