From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail1.windriver.com ([147.11.146.13]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1U5pqT-0001y5-Kx for openembedded-devel@lists.openembedded.org; Thu, 14 Feb 2013 04:51:18 +0100 Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail1.windriver.com (8.14.5/8.14.3) with ESMTP id r1E3Yme4029546 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL) for ; Wed, 13 Feb 2013 19:34:49 -0800 (PST) Received: from yow-jmacdona-d1.ottawa.wrs.com (128.224.146.66) by ALA-HCA.corp.ad.wrs.com (147.11.189.40) with Microsoft SMTP Server (TLS) id 14.2.318.4; Wed, 13 Feb 2013 19:34:46 -0800 Received: from yow-jmacdona-l1 (unknown [172.25.44.2]) by yow-jmacdona-d1.ottawa.wrs.com (Postfix) with ESMTP id 485487FD0; Wed, 13 Feb 2013 22:34:45 -0500 (EST) Received: by yow-jmacdona-l1 (Postfix, from userid 1000) id 869CC20468; Wed, 13 Feb 2013 22:34:44 -0500 (EST) Date: Wed, 13 Feb 2013 22:34:44 -0500 From: Joe MacDonald To: Aws Ismail Message-ID: <20130214033444.GD3156@windriver.com> References: <1360606580-27697-1-git-send-email-aws.ismail@windriver.com> <1360606580-27697-2-git-send-email-aws.ismail@windriver.com> MIME-Version: 1.0 In-Reply-To: <1360606580-27697-2-git-send-email-aws.ismail@windriver.com> X-URL: http://github.com/joeythesaint/joe-s-common-environment/tree/master X-Configuration: git://github.com/joeythesaint/joe-s-common-environment.git X-Editor: Vim-703 http://www.vim.org User-Agent: Mutt/1.5.21 (2010-09-15) Cc: openembedded-devel@lists.openembedded.org Subject: Re: [meta-networking][PATCH 1/3] traceroute: resolve multilib issues X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Feb 2013 03:51:18 -0000 X-Groupsio-MsgNum: 43143 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4zI0WCX1RcnW9Hbu" Content-Disposition: inline --4zI0WCX1RcnW9Hbu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable [[meta-networking][PATCH 1/3] traceroute: resolve multilib issues] On 13.0= 2.11 (Mon 13:16) Aws Ismail wrote: > Make recipe changes to enable successfull building > when multilib is being used. >=20 > Signed-off-by: Aws Ismail > --- > .../traceroute/traceroute_2.0.18.bb | 8 +++++--- > 1 files changed, 5 insertions(+), 3 deletions(-) >=20 > diff --git a/meta-networking/recipes-support/traceroute/traceroute_2.0.18= =2Ebb b/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb > index 6eca731..f5f96b2 100644 > --- a/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb > +++ b/meta-networking/recipes-support/traceroute/traceroute_2.0.18.bb > @@ -11,6 +11,8 @@ LICENSE =3D "GPL-2.0 LGPL-2.1" > LIC_FILES_CHKSUM =3D "file://COPYING;md5=3D94d55d512a9ba36caa9b7df079bae= 19f \ > file://COPYING.LIB;md5=3Dbbb461211a33b134d42ed5ee802= b37ff" > =20 > +PR =3D "r1" > + > inherit update-alternatives > =20 > SRC_URI =3D "${SOURCEFORGE_MIRROR}/traceroute/traceroute/traceroute-2.0.= 18/traceroute-2.0.18.tar.gz \ > @@ -26,13 +28,13 @@ do_compile() { > =20 > do_install() { > install -d ${D}${bindir} > - install -m755 ${PN}/${PN} ${D}${bindir} > + install -m755 ${BPN}/${BPN} ${D}${bindir} > =20 > install -m755 wrappers/tcptraceroute ${D}${bindir} > =20 > install -d ${D}${mandir} > - install -p -m644 ${PN}/${PN}.8 ${D}${mandir} > - ln -s ${PN}.8 ${D}${mandir}/${PN}6.8 > + install -p -m644 ${BPN}/${BPN}.8 ${D}${mandir} > + ln -s ${PN}.8 ${D}${mandir}/${BPN}6.8 > ln -s ${PN}.8 ${D}${mandir}/tcptraceroute.8 Are the targets actually installed as ${PN}.8 and not ${BPN}.8 in a multilib build scenario? What I'm asking is should the above be changed to this instead: ln -s ${BPN}.8 ${D}${mandir}/${BPN}6.8 ln -s ${BPN}.8 ${D}${mandir}/tcptraceroute.8 --=20 -Joe MacDonald. :wq --4zI0WCX1RcnW9Hbu Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEYEARECAAYFAlEcW1QACgkQPN8S4W6ZZneO+wCePyL4zCn3rSZCOsISfd2q0E9k Z7cAn1zONGqAo4c6mxYGo8kpdAwYxhb8 =8Wal -----END PGP SIGNATURE----- --4zI0WCX1RcnW9Hbu--