From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.windriver.com ([147.11.1.11]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1TgJDm-0003lz-6r for openembedded-core@lists.openembedded.org; Wed, 05 Dec 2012 18:57:22 +0100 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.3) with ESMTP id qB5HguO0018178 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL) for ; Wed, 5 Dec 2012 09:42:56 -0800 (PST) Received: from msp-dhcp50.wrs.com (172.25.34.50) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server id 14.2.318.4; Wed, 5 Dec 2012 09:42:56 -0800 Message-ID: <50BF87A1.2050404@windriver.com> Date: Wed, 5 Dec 2012 11:42:57 -0600 From: Mark Hatle Organization: Wind River Systems User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20121026 Thunderbird/16.0.2 MIME-Version: 1.0 To: References: <1354724029-9230-1-git-send-email-sgw@linux.intel.com> In-Reply-To: <1354724029-9230-1-git-send-email-sgw@linux.intel.com> Subject: Re: [PATCH] python-smartpm: Fix build error X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 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: Wed, 05 Dec 2012 17:57:22 -0000 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit On 12/5/12 10:13 AM, Saul Wold wrote: > datadir is normally /usr/share so we don't need to add /share to it. > > Signed-off-by: Saul Wold > --- > meta/recipes-devtools/python/python-smartpm_1.4.1.bb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb > index 254318c..3617fde 100644 > --- a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb > +++ b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb > @@ -44,7 +44,7 @@ inherit distutils > > do_install_append() { > # Cleanup unused item... > - rmdir ${D}${datadir}/share > + rmdir ${D}${datadir} I believe this is wrong. There are things in /usr/share that we want from smart. There are docs and locales and associated files... I believe that was there because an errant "/usr/share/share" directory was generated and that caused problems. > > # We don't support the following items > rm -rf ${D}${libdir}/python*/site-packages/smart/backends/slack >