Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 May 2015 21:00:54 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r283125 - in head/lib/csu: . i386 i386-elf
Message-ID:  <201505192100.t4JL0s9v080416@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Tue May 19 21:00:53 2015
New Revision: 283125
URL: https://svnweb.freebsd.org/changeset/base/283125

Log:
  All FreeBSD platforms are elf: move i386-elf to i386
  
  This was a leftover from when we had both i386 a.out and ELF.
  
  Reviewed by:	kib, imp
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D2591

Added:
  head/lib/csu/i386/
     - copied from r283117, head/lib/csu/i386-elf/
Deleted:
  head/lib/csu/i386-elf/
Modified:
  head/lib/csu/Makefile

Modified: head/lib/csu/Makefile
==============================================================================
--- head/lib/csu/Makefile	Tue May 19 19:17:20 2015	(r283124)
+++ head/lib/csu/Makefile	Tue May 19 21:00:53 2015	(r283125)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
-ARCH= ${MACHINE_ARCH:S/i386/i386-elf/}
-.if exists(${.CURDIR}/${ARCH})
-SUBDIR+= ${ARCH}
+.if exists(${.CURDIR}/${MACHINE_ARCH})
+SUBDIR+= ${MACHINE_ARCH}
 .else
 SUBDIR+= ${MACHINE_CPUARCH}
 .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505192100.t4JL0s9v080416>