spidermonkey: fix build by avoiding eternal loop (#7210)

An eternal loop exists here 78963fe42f/python/mozboot/mozboot/bootstrap.py (L527-L558) which is triggered in the current build set up. This fixes it.
This commit is contained in:
DavidKorczynski 2022-01-31 09:55:54 +00:00 committed by GitHub
parent 3610c9d695
commit 60b66238a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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