From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.17]) by mail.openembedded.org (Postfix) with ESMTP id 40F2860721 for ; Tue, 9 Jan 2018 01:57:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id 2A84720B19; Tue, 9 Jan 2018 01:57:40 +0000 (UTC) Received: from mailout4.zoneedit.com ([127.0.0.1]) by localhost (zmo03-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PSA0oSQ9PZ5A; Tue, 9 Jan 2018 01:57:40 +0000 (UTC) Received: from mail.denix.org (pool-100-15-85-143.washdc.fios.verizon.net [100.15.85.143]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 0ACA32086C; Tue, 9 Jan 2018 01:57:38 +0000 (UTC) Received: by mail.denix.org (Postfix, from userid 1000) id 7F85F163254; Mon, 8 Jan 2018 20:57:38 -0500 (EST) Date: Mon, 8 Jan 2018 20:57:38 -0500 From: Denys Dmytriyenko To: openembedded-core@lists.openembedded.org Message-ID: <20180109015738.GB9657@denix.org> MIME-Version: 1.0 User-Agent: Mutt/1.5.20 (2009-06-14) Subject: Re: bash: add missing build dependencies for ptest 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: Tue, 09 Jan 2018 01:57:39 -0000 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Somehow, below change was never sent or discussed on the list - can't seem to find it. Does this mean bash always requires glibc-locale built, even if I don't use ptest or enable locale? -- Denys commit 2820a2c530018f59895fb57770caa8511d31afd4 Author: Ross Burton Date: Fri Oct 13 14:52:16 2017 +0100 bash: add missing build dependencies for ptest Signed-off-by: Ross Burton diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index f8a92b5..f4e1f7a 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc @@ -24,7 +24,9 @@ ALTERNATIVE_PRIORITY = "100" RDEPENDS_${PN} += "base-files" RDEPENDS_${PN}_class-nativesdk = "" RDEPENDS_${PN}-ptest += "make" -RDEPENDS_${PN}-ptest_append_libc-glibc += " locale-base-fr-fr locale-base-de-de" + +DEPENDS_append_libc-glibc = " glibc-locale" +RDEPENDS_${PN}-ptest_append_libc-glibc = " locale-base-fr-fr locale-base-de-de" USERADD_PACKAGES = "${PN}-ptest" USERADD_PARAM_${PN}-ptest = "--create-home --user-group test"