From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mail.openembedded.org (Postfix) with ESMTP id 68DA1601A9 for ; Mon, 30 Jun 2014 03:33:30 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id rp18so6375987iec.41 for ; Sun, 29 Jun 2014 20:33:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=REVv+7q+2vc89xajzI9ot/GQh2mz6rhIRatlh2maSzc=; b=fhyrkN9OuCpklzQlEFY/s+i2Syu8qYnFHboYHhPdL8z/ROrjvWjsdHEBdnDtP1qgIV ww23Fg8ECDDgFB7RowRetouMcpMHRSUrGbpBePB67s+YULt7LyaHseM0V6g/vu1ZfUuM zythYjl/N5M7e+JVBUs+mSSh/cQjuZQf23EFSphs7YCSmSTntA4AbW+3CX9CpRe0xu3J fl+eBCHSEeUhTqOGTusf2mokSLFcov0in2N2m0LJSyMbVQf+ylL1hlNoEi5xj9BL2b3k eqMtwkYeQwwsZLxybYox7wmPnDlx9DFKMn3hTUcSRZsPV3BcgwfMl1RtNcCXYdWMHz0E ik3Q== X-Gm-Message-State: ALoCoQld2NmBiCVM+FpSEmwuTE+CdIlL2zhUXfY/0qsxp4vJlldLI+8fLswTuKDDeVbc5S94cuL/ X-Received: by 10.50.142.97 with SMTP id rv1mr29718053igb.13.1404099211015; Sun, 29 Jun 2014 20:33:31 -0700 (PDT) Received: from skynet (24-246-4-250.cable.teksavvy.com. [24.246.4.250]) by mx.google.com with ESMTPSA id pm2sm5192544igb.3.2014.06.29.20.33.30 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 29 Jun 2014 20:33:30 -0700 (PDT) Received: by skynet (Postfix, from userid 1000) id 6048A168543; Sun, 29 Jun 2014 23:33:29 -0400 (EDT) Date: Sun, 29 Jun 2014 23:33:29 -0400 From: Joe MacDonald To: openembedded-devel@lists.openembedded.org Message-ID: <20140630033327.GA26745@deserted.net> References: <1403579481-10494-1-git-send-email-rongqing.li@windriver.com> MIME-Version: 1.0 In-Reply-To: <1403579481-10494-1-git-send-email-rongqing.li@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) Subject: Re: [PATCH][meta-networking] tftp-hpa: fix a build failure X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 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: Mon, 30 Jun 2014 03:33:31 -0000 X-Groupsio-MsgNum: 50620 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BOKacYhQ+x31HxR3" Content-Disposition: inline --BOKacYhQ+x31HxR3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Merged, thanks. -J. [[oe] [PATCH][meta-networking] tftp-hpa: fix a build failure] On 14.06.24 (= Tue 11:11) rongqing.li@windriver.com wrote: > From: Roy Li >=20 > AR is defined as "ar cq" in MCONFIG.in, then "cq" is no longer needed in > Makefile of common and libs subdir. > #grep AR MCONFIG.in > AR =3D ar cq > # >=20 > #grep AR common/Makefile > $(AR) $(LIB) $(OBJS) > # > But MCONFIG maybe not able to be generated by MCONFIG.in, common/Makefile > allows this condition [Note the - before include] > #grep MCONFIG common/Makefile > -include ../MCONFIG > # > then AR from building environment is used, but it not included the parame= ter > "cq", and lead to below error, so add the "cq" to AR to fix this issue. > i586-wrs-linux-ar libcommon.a tftpsubs. > i586-wrs-linux-ar: two different operation options specified >=20 > Signed-off-by: Roy Li > --- > meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb | 2 ++ > 1 file changed, 2 insertions(+) >=20 > diff --git a/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb b/m= eta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb > index 366a4e9..1951747 100644 > --- a/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb > +++ b/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb > @@ -32,6 +32,8 @@ SRC_URI[sha256sum] =3D "0a9f88d4c1c02687b4853b02ab5dd87= 79d4de4ffdb9b2e5c9332841304 > =20 > inherit autotools-brokensep update-rc.d update-alternatives > =20 > +export AR =3D "${HOST_PREFIX}ar cq" > + > EXTRA_OECONF +=3D "--disable-option-checking" > =20 > # configure.in has errors > --=20 > 1.7.10.4 >=20 --=20 -Joe MacDonald. :wq --BOKacYhQ+x31HxR3 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEYEARECAAYFAlOw2lQACgkQwFvcllog0Xw+eACfb/awkoZV0SIglQ8LDNoN/WbK pMYAoIf5EMYuvulUYt0XkXQmuKQ2bY71 =YFLd -----END PGP SIGNATURE----- --BOKacYhQ+x31HxR3--