From patchwork Fri Jul 22 08:58:04 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 651592 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3rwl042nbMz9sRZ for ; Fri, 22 Jul 2016 18:57:24 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b=MaLs3HqW; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 095B6A76A9; Fri, 22 Jul 2016 10:57:18 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HPckHLZVEisd; Fri, 22 Jul 2016 10:57:17 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C6D6CA762F; Fri, 22 Jul 2016 10:57:11 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1469CA75BF for ; Fri, 22 Jul 2016 10:57:05 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vSYxMD5R_X_6 for ; Fri, 22 Jul 2016 10:57:04 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg-11.nifty.com (conuserg-11.nifty.com [210.131.2.78]) by theia.denx.de (Postfix) with ESMTPS id 4E094A74DB for ; Fri, 22 Jul 2016 10:57:00 +0200 (CEST) Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-11.nifty.com with ESMTP id u6M8uKnN001930; Fri, 22 Jul 2016 17:56:22 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com u6M8uKnN001930 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1469177782; bh=QSVlMBCtEvPWrDuj/YclrdauRETVdky7X4/G60fe15k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MaLs3HqWmNqalLAgUCdGkSlP5XVt1aCGq8M5bsJFm9xAvQ+/mi/UfvOOPiKQnpF6w SZco2fRlpbNANnJiMAomt+M+F55XS1uIeL0wNlAAFVz4CFPu/INGWhyBNsSV6VgBnq /Gybh+5KZ/SGw9DAKV3msyd6vwyWleG2vxB8bZNeVSZsZ0iCXIi5cffN5UJdVeU1xB VW2cz36yLefe6rLKziKbZvSKR2pFE73FKQddWRa4+1sNo05SPx22Sz5JGaNmDfAB2I x8o26GQE7YylQD5Vod5E2qC0Hw0GsOEe7MHd20FzpY+zQlR+BUztTl8DbUGnG/7gLE SoZkAE9hW7jsQ== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Fri, 22 Jul 2016 17:58:04 +0900 Message-Id: <1469177885-15849-3-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1469177885-15849-1-git-send-email-yamada.masahiro@socionext.com> References: <1469177885-15849-1-git-send-email-yamada.masahiro@socionext.com> Cc: Tom Rini , Joe Hershberger Subject: [U-Boot] [PATCH 2/2] tools: moveconfig: do not check clean tree and compilers for -H option X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" The clean tree (make mrproper) and compilers are required when moving config options, but not needed when we only cleanup headers. Signed-off-by: Masahiro Yamada --- tools/moveconfig.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/moveconfig.py b/tools/moveconfig.py index b1190e2..05a581f 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -1042,11 +1042,9 @@ def main(): check_top_directory() - check_clean_directory() - - update_cross_compile(options.color) - if not options.cleanup_headers_only: + check_clean_directory() + update_cross_compile(options.color) move_config(configs, options) if configs: