make: fix unbound variable error

This commit is contained in:
Leonid Pliushch 2019-08-11 15:56:13 +03:00
parent 46fca435c6
commit fd9f4a1156

View File

@ -23,7 +23,7 @@ termux_step_make() {
if [ -n "$TERMUX_ON_DEVICE_BUILD" ] && [ -z "$(command -v make)" ]; then
./build.sh
else
make -j $TERMUX_MAKE_PROCESSES $QUIET_BUILD
make -j $TERMUX_MAKE_PROCESSES
fi
}