From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.windriver.com (mail.windriver.com [147.11.1.11]) by mail.openembedded.org (Postfix) with ESMTP id EBC73609B1 for ; Fri, 25 Jul 2014 08:23:22 +0000 (UTC) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail.windriver.com (8.14.5/8.14.5) with ESMTP id s6P8Mbcc002393 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Fri, 25 Jul 2014 01:23:21 -0700 (PDT) Received: from [128.224.162.194] (128.224.162.194) by ALA-HCA.corp.ad.wrs.com (147.11.189.40) with Microsoft SMTP Server id 14.3.169.1; Fri, 25 Jul 2014 01:22:41 -0700 Message-ID: <53D213BF.5070105@windriver.com> Date: Fri, 25 Jul 2014 16:22:23 +0800 From: Hongxu Jia User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: References: In-Reply-To: Cc: saul.wold@intel.com Subject: Re: [PATCH V3 0/1] insane: add checking to standardize how .bbappend files do FILESEXTRAPATHS X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jul 2014 08:23:25 -0000 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Ping The fix in meta-fsl-ppc has been merged. It will not break the autobuilder. //Hongxu On 07/23/2014 11:33 AM, Hongxu Jia wrote: > Change in V3: > - Make the error message more readable. The incorrect assignment > info will be helpful for issue location. > > Change in V2: > - It is more reasonable to move the checking to insance.bbclass > rather than create a new bbclass. > > Test Steps: > > 1) Add git://git.yoctoproject.org/meta-fsl-ppc layer > The openssl and cryptodev-fsl incorrectly assigned > FILESEXTRAPATHS which forgot the colon.(I have sent the > fix to meta-fsl-ppc layer mail list) > ... > FILESEXTRAPATHS_prepend := "${THISDIR}/openssl-fsl" > ... > FILESEXTRAPATHS_prepend := "${THISDIR}/cryptodev-fsl" > ... > 2) bitbake openssl > ... > ERROR: FILESEXTRAPATHS-variable, must always use _prepend (or _append) > type of assignment, and don't forget the colon. > Please assign it with the format of: > FILESEXTRAPATHS_append := ":${THISDIR}/Your_Files_Path" or > FILESEXTRAPATHS_prepend := "${THISDIR}/Your_Files_Path:" > in your bbappend file > > Your incorrect assignment is: > /home/jiahongxu/yocto/meta-openembedded/meta-fsl-ppc/recipes-connectivity/openssl/openssl-fsl__default: > > ERROR: Failed to parse recipe: /home/jiahongxu/yocto/meta-openembedded/meta-fsl-ppc/recipes-connectivity/openssl/openssl_1.0.1g.bb > ... > > //Hongxu > > > > The following changes since commit 4d2ac6f6df2b3ef98699dd4f7afadb2d994222bb: > > rootfs: Remove the extraneous install directory (2014-07-19 00:18:21 +0100) > > are available in the git repository at: > > git://git.pokylinux.org/poky-contrib hongxu/filesextrapaths > http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/filesextrapaths > > Hongxu Jia (1): > insane: add checking to standardize how .bbappend files do > FILESEXTRAPATHS > > meta/classes/insane.bbclass | 13 +++++++++++++ > meta/classes/utils.bbclass | 2 ++ > meta/conf/bitbake.conf | 2 ++ > 3 files changed, 17 insertions(+) >