aboutsummaryrefslogtreecommitdiff
path: root/projects/spidermonkey-ufi/Dockerfile
diff options
context:
space:
mode:
authorChristian Holler (:decoder) <choller@mozilla.com>2021-03-11 21:48:11 +0100
committerGitHub <noreply@github.com>2021-03-11 12:48:11 -0800
commita15ab02cc449c5b9e95bef3dc0f7ea191a984afd (patch)
tree333e2b5fb8602af8a04cea6a6e04e4d3f06917e2 /projects/spidermonkey-ufi/Dockerfile
parenta0fb9a91ba7cace8a5a6c4ada704498670e0135e (diff)
downloadoss-fuzz-a15ab02cc449c5b9e95bef3dc0f7ea191a984afd.tar.gz
[firefox/spidermonkey] Remove cargo wrapper in /usr/local/bin to fix builds (#5369)
Diffstat (limited to 'projects/spidermonkey-ufi/Dockerfile')
-rw-r--r--projects/spidermonkey-ufi/Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/projects/spidermonkey-ufi/Dockerfile b/projects/spidermonkey-ufi/Dockerfile
index bf95bdfa7..8caec014f 100644
--- a/projects/spidermonkey-ufi/Dockerfile
+++ b/projects/spidermonkey-ufi/Dockerfile
@@ -20,6 +20,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
python \
libc++1 \
libc++abi1
+
+# This wrapper of cargo seems to interfere with our build system.
+RUN rm -f /usr/local/bin/cargo
+
RUN git clone --depth=1 https://github.com/mozilla/gecko-dev mozilla-central
WORKDIR mozilla-central/js/src/
COPY build.sh target.c $SRC/