svn commit: r283125 - in head/lib/csu: . i386 i386-elf

Ed Maste emaste at FreeBSD.org
Tue May 19 21:00:54 UTC 2015


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


More information about the svn-src-all mailing list