Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker/bootstrap: Replace ENV MAKEFLAGS with setting it per command.
The ENV version was not working anyway since Docker did single-quote: '-j$(nproc)' Because of that make saw this string literal and converted it into an (unknown) absurd high number. On my 12 core machine it executed way more jobs in parallel than 12. This change will also fix this.
- Loading branch information