From 60b66238a83b29b63fb56f02c7a15316a234e92a Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Mon, 31 Jan 2022 09:55:54 +0000 Subject: [PATCH] spidermonkey: fix build by avoiding eternal loop (#7210) An eternal loop exists here https://github.com/mozilla/gecko-dev/blob/78963fe42f8d5f582f84da84a5e78377b6c1fc32/python/mozboot/mozboot/bootstrap.py#L527-L558 which is triggered in the current build set up. This fixes it. --- projects/spidermonkey/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/spidermonkey/build.sh b/projects/spidermonkey/build.sh index 843c4e5b3..26b90b1a7 100755 --- a/projects/spidermonkey/build.sh +++ b/projects/spidermonkey/build.sh @@ -22,7 +22,9 @@ rustup default nightly # Install dependencies. export MOZBUILD_STATE_PATH=/root/.mozbuild export SHELL=/bin/bash -../../mach --no-interactive bootstrap --application-choice browser +cd ../../ +./mach --no-interactive bootstrap --application-choice browser +cd js/src/ autoconf2.13