aboutsummaryrefslogtreecommitdiff
path: root/projects/spidermonkey-ufi
diff options
context:
space:
mode:
authorTyson Smith <tysmith@users.noreply.github.com>2021-03-19 10:19:21 -0700
committerGitHub <noreply@github.com>2021-03-19 10:19:21 -0700
commit6998e8e9dca5ff2c4d9e829e8edb10bfd78aa5a2 (patch)
tree6deebbd27fe23ef139e38a774132a8f3577b1a9a /projects/spidermonkey-ufi
parentcb083cb3658c44df432c188f68f5a1ed297310cf (diff)
downloadoss-fuzz-6998e8e9dca5ff2c4d9e829e8edb10bfd78aa5a2.tar.gz
[firefox/spidermonkey] Fix mach call and install dep (#5446)
Diffstat (limited to 'projects/spidermonkey-ufi')
-rw-r--r--projects/spidermonkey-ufi/Dockerfile3
-rwxr-xr-xprojects/spidermonkey-ufi/build.sh2
2 files changed, 3 insertions, 2 deletions
diff --git a/projects/spidermonkey-ufi/Dockerfile b/projects/spidermonkey-ufi/Dockerfile
index 8caec014f..25e4d2d60 100644
--- a/projects/spidermonkey-ufi/Dockerfile
+++ b/projects/spidermonkey-ufi/Dockerfile
@@ -19,7 +19,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf2.13 \
python \
libc++1 \
- libc++abi1
+ libc++abi1 \
+ m4
# This wrapper of cargo seems to interfere with our build system.
RUN rm -f /usr/local/bin/cargo
diff --git a/projects/spidermonkey-ufi/build.sh b/projects/spidermonkey-ufi/build.sh
index 31c5b9535..9f703305c 100755
--- a/projects/spidermonkey-ufi/build.sh
+++ b/projects/spidermonkey-ufi/build.sh
@@ -23,7 +23,7 @@ FUZZ_TARGETS=(
# Install dependencies.
export SHELL=/bin/bash
-../../mach bootstrap --no-interactive --application-choice browser
+../../mach --no-interactive bootstrap --application-choice browser
autoconf2.13