mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-24 00:25:38 +00:00
all.sh: fix MAKEFLAGS setting
MAKEFLAGS was set to -j if it was already set, instead of being set if not previously set as intended. So now all.sh will do parallel builds if invoked without MAKEFLAGS in the environment.
This commit is contained in:
parent
770ad7e2c9
commit
7120f77889
|
@ -110,7 +110,7 @@ pre_initialize_variables () {
|
|||
: ${ARMC6_BIN_DIR:=/usr/bin}
|
||||
|
||||
# if MAKEFLAGS is not set add the -j option to speed up invocations of make
|
||||
if [ -n "${MAKEFLAGS+set}" ]; then
|
||||
if [ -z "${MAKEFLAGS+set}" ]; then
|
||||
export MAKEFLAGS="-j"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue