From 8d24cb96a973ad97913a71d2caafd8d9b6753a00 Mon Sep 17 00:00:00 2001 From: bryan Date: Sat, 18 Oct 2025 12:27:40 -0400 Subject: [PATCH] Switch to canonical make order --- openwrtbuilder | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openwrtbuilder b/openwrtbuilder index cfc771a..7bc62aa 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -636,7 +636,8 @@ from_source() { done # Serial make prep is more reliable - execute bash -c "yes '' | make ${make_opts[*]} -j1 olddefconfig" + execute make "${make_opts[@]}" "-j1" defconfig + execute bash -c "yes '' | make ${make_opts[*]} -j1 oldconfig" # make_opts+=("-j$(($(nproc)-2))") ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)-2))")