Skip to content
Snippets Groups Projects
Verified Commit 0a5dae88 authored by Karel Koci's avatar Karel Koci :metal:
Browse files

compile_pkgs: fix typo causing build to be run in single thread

This simple typo caused forice-make to run only in fallback mode. That
is always building in single thread with verbose output.
parent acdcab7d
Branches
Tags
2 merge requests!377Turris OS 5.2 (HBK),!287Bugfix/broken force make
......@@ -125,7 +125,7 @@ _openwrt_make() {
if [ -z "$FORCE" ]; then
mk=("make" -j "$BUILD_JOBS")
else
mk=("$src_dir/helpers/force-make" "-j" "$BULD_JOBS" "-c" "$FORCE" "-f" "V=s" "--")
mk=("$src_dir/helpers/force-make" "-j" "$BUILD_JOBS" "-c" "$FORCE" "-f" "V=s" "--")
fi
"${mk[@]}" ${debug:+-d} \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment