소스 검색

Improve make debug

bryan 10 달 전
부모
커밋
6f793dddb9
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      openwrtbuilder

+ 3 - 1
openwrtbuilder

@@ -673,7 +673,9 @@ fromSource() {
 
     # Make prep
     (( DEBUG )) && make_opts+=("V=s")
-    execute make "${make_opts[@]}" "-j1" dirclean defconfig download
+    execute make "${make_opts[@]}" "-j1" dirclean
+    execute make "${make_opts[@]}" "-j1" defconfig
+    execute make "${make_opts[@]}" "-j1" download
 
     # Make image
     if ! execute ionice -c 3 chrt --idle 0 nice -n19 make "${make_opts[@]}" "-j$(($(nproc)+1))" world; then