From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.multimedia-labs.de ([82.149.226.172]) by linuxtogo.org with esmtp (Exim 4.69) (envelope-from ) id 1PKs8u-0007iT-Bt for openembedded-devel@lists.openembedded.org; Tue, 23 Nov 2010 13:38:41 +0100 Received: from localhost (localhost [127.0.0.1]) by mail.multimedia-labs.de (Postfix) with ESMTP id DBB18314AEFE for ; Tue, 23 Nov 2010 13:37:29 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail.multimedia-labs.de Received: from mail.multimedia-labs.de ([127.0.0.1]) by localhost (mail.multimedia-labs.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id t8nZT-pfk9TG for ; Tue, 23 Nov 2010 13:37:23 +0100 (CET) Received: from [172.22.22.60] (ip-109-90-189-193.unitymediagroup.de [109.90.189.193]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.multimedia-labs.de (Postfix) with ESMTPSA id A704D314AE2C for ; Tue, 23 Nov 2010 13:37:23 +0100 (CET) Message-ID: <4CEBB582.3030106@opendreambox.org> Date: Tue, 23 Nov 2010 13:37:22 +0100 From: Andreas Oberritter User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6 MIME-Version: 1.0 To: openembedded-devel@lists.openembedded.org References: <4CEB3497.90607@gmail.com> In-Reply-To: <4CEB3497.90607@gmail.com> X-SA-Exim-Connect-IP: 82.149.226.172 X-SA-Exim-Mail-From: obi@opendreambox.org X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on discovery X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,SPF_PASS autolearn=ham version=3.2.5 X-SA-Exim-Version: 4.2.1 (built Wed, 25 Jun 2008 17:20:07 +0000) X-SA-Exim-Scanned: Yes (on linuxtogo.org) Subject: Re: [PATCH v2] strace_4.5.20.bb: Fix build on mips{, el} when DISTRO_FEATURES lacks "largefile". 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: Tue, 23 Nov 2010 12:38:41 -0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 11/23/2010 04:27 AM, Graham Gower wrote: > diff --git a/recipes/strace/strace_4.5.20.bb b/recipes/strace/strace_4.5.20.bb > index 873ce52..086a4d7 100644 > --- a/recipes/strace/strace_4.5.20.bb > +++ b/recipes/strace/strace_4.5.20.bb > @@ -4,9 +4,13 @@ LICENSE = "GPL" > PR = "r0" > > DEFAULT_PREFERENCE = "-1" > +DEFAULT_PREFERENCE_mips = "1" > +DEFAULT_PREFERENCE_mipsel = "1" > > SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.bz2 \ > " > +SRC_URI_append_mipsel += " file://mips-nolargefile.patch " > +SRC_URI_append_mips += " file://mips-nolargefile.patch " I think it would be better to apply this patch unconditionally, because it doesn't impose negative effects on other archs, and future patches which might only get compile-tested on other archs must make sure that mips-nolargefile.patch still applies. Regards, Andreas