From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 02DD7E00D72; Wed, 6 Dec 2017 23:37:52 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at http://www.dnswl.org/, * medium trust * [147.11.1.11 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mail.windriver.com (mail.windriver.com [147.11.1.11]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 25478E00D74 for ; Wed, 6 Dec 2017 23:37:46 -0800 (PST) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail.windriver.com (8.15.2/8.15.1) with ESMTPS id vB77bkIP025465 (version=TLSv1 cipher=AES128-SHA bits=128 verify=FAIL); Wed, 6 Dec 2017 23:37:46 -0800 (PST) Received: from pek-lpg-core1.wrs.com (128.224.156.132) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server id 14.3.361.1; Wed, 6 Dec 2017 23:37:45 -0800 From: Robert Yang To: Date: Thu, 7 Dec 2017 15:37:09 +0800 Message-ID: <3cfb7ff6e7a2c93b966ba7b70f58cca65a6f0532.1512630627.git.liezhi.yang@windriver.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: References: MIME-Version: 1.0 Cc: paul.eggleton@linux.intel.com Subject: [PATCH 04/12] modules/steps.py: fix warn when skip compilation X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2017 07:37:52 -0000 Content-Type: text/plain Signed-off-by: Robert Yang --- modules/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/steps.py b/modules/steps.py index 0c527a4..677d101 100644 --- a/modules/steps.py +++ b/modules/steps.py @@ -137,7 +137,7 @@ def unpack_original_workdir(bb, git, opts, pkg_ctx): def compile(bb, git, opts, pkg_ctx): if opts['skip_compilation']: - W(" %s: Compilation was skipped by user choice!") + W(" %s: Compilation was skipped by user choice!" % pkg_ctx['PN']) return for machine in opts['machines']: -- 2.7.4