From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yb0-f174.google.com (mail-yb0-f174.google.com [209.85.213.174]) by mail.openembedded.org (Postfix) with ESMTP id 96B9177C90 for ; Wed, 12 Apr 2017 11:04:36 +0000 (UTC) Received: by mail-yb0-f174.google.com with SMTP id i124so5691805ybc.3 for ; Wed, 12 Apr 2017 04:04:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=intel-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=4saiEK+Iy0u2a34eBMVP+/S4gUsFniClngTUZQayGWw=; b=vufiJ8Y5Nx4GMLrvlROw1o7POQpeEP9/7GvEZ+0qchLvwh3o0/VA9ZdRmrLnnTM6D2 J7EMoaGWt7kets0AejZLUCYI3tOj1aNaUvqijETBwi7x4HygnjuI0SL6CIZRzJ9N1Bsm RQCsBSEtvI2Vb+pQHL4VY8v8PFClBSUZIH7Q7iC7FAa4a98fgZrEUo0ePnx41VQliZOa fuC0eh43dR7MT6v79NtiaxyGpNgk8YeHqeX+9hrO6CSpQ0A9sunuVj7n4Nh7AW1VIyqC 4RbaBo2zF1qaAn7P1UGr0ziFRLwiBKVYh+kZRTb+5m2b6/q+n8J+V0yYpUjGkvKBt62K qZKA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=4saiEK+Iy0u2a34eBMVP+/S4gUsFniClngTUZQayGWw=; b=JsX+MrQHp1GYnwKwZBxPC+0gJlzlxl9ay64yj6JUwyKlOtrGs+XuhTNwBDw4+dalAM QB5WD50rIU6e93IONp2anc9eLYj5BiQgJJDLufpPEHmraTfkOLeOwvdWExZv6HmpzWpQ pY/7jzBcPfsGIa8AbsRrch9vbZLJ5UxedXcGfj+seCufNGXSJojUB4/+SFTg86H//n3j 9mTyyZKFqIT37jmYrjuCm1RuyiCe/idCnrDSq5K4X562voRLSi20y7g9qUvBFnSWjgEq xsLBilYY7LDhX8+fJ8Cbuq4XZZreTCQCEe5Sv4k61KW5pIiROci6GRRreOGNm6GoZILt Vqyw== X-Gm-Message-State: AFeK/H3M/xYc1IXPW6HqXX+Guht60IrHHbIUaILfgHtLjbWbXo6XQ6CWZmvSsrdxkdvtaiK6Vy8qCYxvya/YBW3O X-Received: by 10.37.163.65 with SMTP id d59mr44144824ybi.103.1491995077419; Wed, 12 Apr 2017 04:04:37 -0700 (PDT) MIME-Version: 1.0 Received: by 10.129.121.75 with HTTP; Wed, 12 Apr 2017 04:04:07 -0700 (PDT) In-Reply-To: <1491994341-28659-1-git-send-email-zhixiong.chi@windriver.com> References: <1491994341-28659-1-git-send-email-zhixiong.chi@windriver.com> From: Jussi Kukkonen Date: Wed, 12 Apr 2017 14:04:07 +0300 Message-ID: To: Zhixiong Chi Cc: Patches and discussions about the oe-core layer Subject: Re: [PATCH] gnome-common: add EXTRA_OECONF "--with-autoconf-archive" 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: Wed, 12 Apr 2017 11:04:36 -0000 Content-Type: multipart/alternative; boundary=94eb2c19924698bf64054cf62c88 --94eb2c19924698bf64054cf62c88 Content-Type: text/plain; charset=UTF-8 On 12 April 2017 at 13:52, Zhixiong Chi wrote: > After updating the autoconf-archive version to 2016.09.16, autoconf-archive > installs the same ax_*.m4 macros that gnome-common installs. So there will > be the conflict occurs. > The option '--with-autoconf-archive' is passed to configure, the macros > are not installed, and gnome-common will not install any M4 macros that > conflict with autoconf-archive. > At the same time, set the RDEPENDS for gnome-common. > > Signed-off-by: Zhixiong Chi > --- > meta/recipes-gnome/gnome/gnome-common_3.18.0.bb | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/meta/recipes-gnome/gnome/gnome-common_3.18.0.bb > b/meta/recipes-gnome/gnome/gnome-common_3.18.0.bb > index 06f3bb3..96817bb 100644 > --- a/meta/recipes-gnome/gnome/gnome-common_3.18.0.bb > +++ b/meta/recipes-gnome/gnome/gnome-common_3.18.0.bb > @@ -14,6 +14,9 @@ SRC_URI[archive.sha256sum] = > "22569e370ae755e04527b76328befc4c73b62bfd4a572499fd > EXTRA_AUTORECONF = "" > DEPENDS = "" > > +EXTRA_OECONF += " --with-autoconf-archive" > +RDEPENDS_${PN} = "autoconf-archive" > autoconf-archive is not in oe-core, is it? > + > FILES_${PN} += "${datadir}/aclocal" > FILES_${PN}-dev = "" > > -- > 1.9.1 > > -- > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-core > --94eb2c19924698bf64054cf62c88 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
On 1= 2 April 2017 at 13:52, Zhixiong Chi <zhixiong.chi@windriver.com> wrote:
After updating the a= utoconf-archive version to 2016.09.16, autoconf-archive
installs the same ax_*.m4 macros that gnome-common installs. So there will<= br> be the conflict occurs.
The option '--with-autoconf-archive' is passed to configure, the ma= cros
are not installed, and gnome-common will not install any M4 macros that
conflict with autoconf-archive.
At the same time, set the RDEPENDS for gnome-common.

Signed-off-by: Zhixiong Chi <
zhixiong.chi@windriver.com>
---
=C2=A0meta/recipes-gnome/gnome/gnome-common_3.18.0.bb | 3 +++<= br> =C2=A01 file changed, 3 insertions(+)

diff --git a/meta/recipes-gnome/gnome/gnome-common_3.18.0.bb b= /meta/recipes-gnome/gnome/gnome-common_3.18.0.bb
index 06f3bb3..96817bb 100644
--- a/meta/recipes-gnome/gnome/gnome-common_3.18.0.bb
+++ b/meta/recipes-gnome/gnome/gnome-common_3.18.0.bb
@@ -14,6 +14,9 @@ SRC_URI[archive.sha256sum] =3D "22569e370ae755e04527= b76328befc4c73b62bfd4a572499fd
=C2=A0EXTRA_AUTORECONF =3D ""
=C2=A0DEPENDS =3D ""

+EXTRA_OECONF +=3D " --with-autoconf-archive"
+RDEPENDS_${PN} =3D "autoconf-archive"

<= /div>
autoconf-archive is not in oe-core, is it?
=C2=A0
=
+
=C2=A0FILES_${PN} +=3D "${datadir}/aclocal"
=C2=A0FILES_${PN}-dev =3D ""

--
1.9.1

--
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/m= ailman/listinfo/openembedded-core

--94eb2c19924698bf64054cf62c88--