diff --git a/openwrtbuilder b/openwrtbuilder index 80defd8..bc1b892 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -673,9 +673,13 @@ fromSource() { # Make image (( DEBUG )) && make_opts+=("V=s") - #make_opts+=("-j$(($(nproc) - 2))") - make_opts+=("-j1") - execute make "${make_opts[@]}" defconfig download clean world + + execute make "${make_opts[@]}" defconfig download clean + + make_opts+=("-j$(($(nproc) - 2))") + #make_opts+=("-j1") # for debugging purposes + + execute make "${make_opts[@]}" world popd || return 1