You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gn...@apache.org on 2020/03/19 13:52:01 UTC

[incubator-nuttx] 02/05: tools/sethost.sh: Don't make clean_context explicitly

This is an automated email from the ASF dual-hosted git repository.

gnutt pushed a commit to branch pr589
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 2e81051b40d6c3572a1e6f40c4d89eb1912771a2
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Thu Mar 19 11:44:16 2020 +0800

    tools/sethost.sh: Don't make clean_context explicitly
    
    since olddefconfig will do this automatically
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
    Change-Id: I3376fc3fa5fff06b37871837261e31d9b0103cae
---
 tools/sethost.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tools/sethost.sh b/tools/sethost.sh
index 8ebac02..4e776ab 100755
--- a/tools/sethost.sh
+++ b/tools/sethost.sh
@@ -271,7 +271,6 @@ sed -i -e "/CONFIG_HOST_OTHER/d" $nuttx/.config
 
 echo "  Refreshing..."
 cd $nuttx || { echo "ERROR: failed to cd to $nuttx"; exit 1; }
-make clean_context 1>/dev/null 2>&1
 if [ "X${debug}" = "Xy" ]; then
   make olddefconfig V=1 || { echo "ERROR: failed to refresh"; exit 1; }
 else