aboutsummaryrefslogtreecommitdiff
path: root/projects/spidermonkey
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
parentcb083cb3658c44df432c188f68f5a1ed297310cf (diff)
downloadoss-fuzz-6998e8e9dca5ff2c4d9e829e8edb10bfd78aa5a2.tar.gz
[firefox/spidermonkey] Fix mach call and install dep (#5446)
Diffstat (limited to 'projects/spidermonkey')
-rw-r--r--projects/spidermonkey/Dockerfile1
-rwxr-xr-xprojects/spidermonkey/build.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/projects/spidermonkey/Dockerfile b/projects/spidermonkey/Dockerfile
index 4e1f28291..9c74dce54 100644
--- a/projects/spidermonkey/Dockerfile
+++ b/projects/spidermonkey/Dockerfile
@@ -19,6 +19,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \
autoconf2.13 \
libc++1 \
libc++abi1 \
+ m4 \
yasm \
python
diff --git a/projects/spidermonkey/build.sh b/projects/spidermonkey/build.sh
index d5f34b80f..bf2e03bfc 100755
--- a/projects/spidermonkey/build.sh
+++ b/projects/spidermonkey/build.sh
@@ -17,7 +17,7 @@
# Install dependencies.
export SHELL=/bin/bash
-../../mach bootstrap --no-interactive --application-choice browser
+../../mach --no-interactive bootstrap --application-choice browser
autoconf2.13