From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga03.intel.com ([143.182.124.21]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1QJT11-0008F6-EP for openembedded-core@lists.openembedded.org; Mon, 09 May 2011 18:08:59 +0200 Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga101.ch.intel.com with ESMTP; 09 May 2011 09:06:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.64,341,1301900400"; d="scan'208";a="433036561" Received: from unknown (HELO [10.255.12.75]) ([10.255.12.75]) by azsmga001.ch.intel.com with ESMTP; 09 May 2011 09:06:04 -0700 Message-ID: <4DC810EC.4090004@linux.intel.com> Date: Mon, 09 May 2011 09:06:04 -0700 From: Saul Wold User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.10) Gecko/20100621 Fedora/3.0.5-1.fc13 Lightning/1.0b2pre Thunderbird/3.0.5 MIME-Version: 1.0 To: Patches and discussions about the oe-core layer References: <1304693308-5625-1-git-send-email-koen@dominion.thruhere.net> In-Reply-To: <1304693308-5625-1-git-send-email-koen@dominion.thruhere.net> Cc: Koen Kooi Subject: Re: [PATCH] package.bbclass: convert unpackaged file message from 'info' to 'warn' so that it shows up on the console X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 May 2011 16:08:59 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 05/06/2011 07:48 AM, Koen Kooi wrote: > Signed-off-by: Koen Kooi > --- > meta/classes/package.bbclass | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass > index e6b3df7..082f233 100644 > --- a/meta/classes/package.bbclass > +++ b/meta/classes/package.bbclass > @@ -676,9 +676,9 @@ python populate_packages () { > unshipped.append(path) > > if unshipped != []: > - bb.note("the following files were installed but not shipped in any package:") > + bb.warn("the following files were installed but not shipped in any package:") > for f in unshipped: > - bb.note(" " + f) > + bb.warn(" " + f) > > bb.build.exec_func("package_name_hook", d) > Pulled into oe-Core Thanks Sau!