From owner-svn-src-head@freebsd.org Fri Apr 7 19:56:13 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B37AD3312D; Fri, 7 Apr 2017 19:56:13 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 55E16C27; Fri, 7 Apr 2017 19:56:13 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v37JuCvM030104; Fri, 7 Apr 2017 19:56:12 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v37JuCDX030103; Fri, 7 Apr 2017 19:56:12 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201704071956.v37JuCDX030103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Fri, 7 Apr 2017 19:56:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r316621 - head/share/mk X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Apr 2017 19:56:13 -0000 Author: jhb Date: Fri Apr 7 19:56:12 2017 New Revision: 316621 URL: https://svnweb.freebsd.org/changeset/base/316621 Log: Don't set the MIPS endianness flags in both ACFLAGS and CFLAGS. This should no longer be necessary after r316620 as all places that use ACFLAGS should already be using CFLAGS. Reviewed by: imp Sponsored by: DARPA / AFRL Differential Revision: https://reviews.freebsd.org/D10085 Modified: head/share/mk/bsd.cpu.mk Modified: head/share/mk/bsd.cpu.mk ============================================================================== --- head/share/mk/bsd.cpu.mk Fri Apr 7 19:53:14 2017 (r316620) +++ head/share/mk/bsd.cpu.mk Fri Apr 7 19:56:12 2017 (r316621) @@ -306,12 +306,10 @@ MACHINE_CPU = v9 ultrasparc ultrasparc3 .if ${MACHINE_CPUARCH} == "mips" CFLAGS += -G0 . if ${MACHINE_ARCH:Mmips*el*} != "" -ACFLAGS += -EL AFLAGS += -EL CFLAGS += -EL LDFLAGS += -EL . else -ACFLAGS += -EB AFLAGS += -EB CFLAGS += -EB LDFLAGS += -EB