From 5ae94d72b4ae312867bb31f25429b763bf67ca0b Mon Sep 17 00:00:00 2001 From: bryan Date: Mon, 25 Nov 2024 17:23:59 -0500 Subject: [PATCH] Use make distclean --- openwrtbuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwrtbuilder b/openwrtbuilder index 331e7a9..40d793c 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -575,7 +575,7 @@ from_source() { # Make prep ((DEBUG)) && make_opts+=("V=s") - #execute make "${make_opts[@]}" "-j1" dirclean # TODO 'dirclean' has a bug that triggers menuconfig + execute make "${make_opts[@]}" "-j1" distclean # TODO 'dirclean' has a bug that triggers menuconfig execute make "${make_opts[@]}" "-j1" defconfig execute make "${make_opts[@]}" "-j1" download ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)+1))")