From a5fecf88dc775548d0e807a495c6b16d0da96a3b Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 3 Oct 2019 07:55:54 -0600 Subject: [PATCH] Revert "tools/testbuild.sh: Use CPU option on 'make distclean' too, but not 'make olddefconfig." This reverts commit edb19474bc478a7a5f4f1e0cf4b9c96ea5e34e80. --- tools/testbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testbuild.sh b/tools/testbuild.sh index 75b7b52b6ed..dee7075e935 100755 --- a/tools/testbuild.sh +++ b/tools/testbuild.sh @@ -154,7 +154,7 @@ function distclean { cd $nuttx || { echo "ERROR: failed to CD to $nuttx"; exit 1; } if [ -f .config ]; then echo " Cleaning..." - ${MAKE} ${JOPTION} ${MAKE_FLAGS} distclean 1>/dev/null + ${MAKE} ${MAKE_FLAGS} distclean 1>/dev/null fi }