From owner-svn-src-stable@FreeBSD.ORG Tue Dec 6 00:11:20 2011 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A2265106564A; Tue, 6 Dec 2011 00:11:20 +0000 (UTC) (envelope-from gonzo@hq.bluezbox.com) Received: from hq.bluezbox.com (hq.bluezbox.com [70.38.37.145]) by mx1.freebsd.org (Postfix) with ESMTP id 3667B8FC16; Tue, 6 Dec 2011 00:11:20 +0000 (UTC) Received: from localhost ([127.0.0.1]) by hq.bluezbox.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.73 (FreeBSD)) (envelope-from ) id 1RXiBp-000HFX-Vq; Mon, 05 Dec 2011 15:43:18 -0800 Message-ID: <4EDD5716.6030006@freebsd.org> Date: Mon, 05 Dec 2011 15:43:18 -0800 From: Oleksandr Tymoshenko User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:8.0) Gecko/20111105 Thunderbird/8.0 MIME-Version: 1.0 References: <201112052329.pB5NTRJV062800@svn.freebsd.org> In-Reply-To: <201112052329.pB5NTRJV062800@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Sender: gonzo@hq.bluezbox.com X-Spam-Level: --- X-Spam-Report: Spam detection software, running on the system "hq.bluezbox.com", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see The administrator of that system for details. Content preview: Sorry for short comment. It was editor glitch :( Proper comment is: Unbreak 8-STABLE build. LDFLAGS is used as an argument for both ld (in kmod.mk) and cc when it acts as a linker. In latter case cc properly passes byte-order settings to ld so there is no need for -Wl, part. [...] Content analysis details: (-3.1 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.8 ALL_TRUSTED Passed through trusted hosts only via SMTP 1.3 MISSING_HEADERS Missing To: header -2.6 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-8@freebsd.org Subject: Re: svn commit: r228294 - stable/8/share/mk X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Dec 2011 00:11:20 -0000 Sorry for short comment. It was editor glitch :( Proper comment is: Unbreak 8-STABLE build. LDFLAGS is used as an argument for both ld (in kmod.mk) and cc when it acts as a linker. In latter case cc properly passes byte-order settings to ld so there is no need for -Wl, part. On 05/12/2011 3:29 PM, Oleksandr Tymoshenko wrote: > Author: gonzo > Date: Mon Dec 5 23:29:27 2011 > New Revision: 228294 > URL: http://svn.freebsd.org/changeset/base/228294 > > Log: > Unbreak > > Modified: > stable/8/share/mk/bsd.cpu.mk > > Modified: stable/8/share/mk/bsd.cpu.mk > ============================================================================== > --- stable/8/share/mk/bsd.cpu.mk Mon Dec 5 22:55:52 2011 (r228293) > +++ stable/8/share/mk/bsd.cpu.mk Mon Dec 5 23:29:27 2011 (r228294) > @@ -242,11 +242,11 @@ LD += -EB > .if ${MACHINE_ARCH} == "mips" > . if defined(TARGET_BIG_ENDIAN) > CFLAGS += -EB > -LDFLAGS += -Wl,-EB > +LDFLAGS += -EB > LD += -EB > . else > CFLAGS += -EL > -LDFLAGS += -Wl,-EL > +LDFLAGS += -EL > LD += -EL > . endif > CFLAGS += -msoft-float -G0 -mno-dsp -mabicalls >