Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Jun 2010 16:32:20 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r209510 - head
Message-ID:  <201006241632.o5OGWKBb040575@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Thu Jun 24 16:32:20 2010
New Revision: 209510
URL: http://svn.freebsd.org/changeset/base/209510

Log:
  Merge from tbemd:
  
  change the name of the object tree from ${TARGET} to
  ${TARGET}.${TARGET_ARCH} so we can do both big and little endian
  builds in the same tree.
  
  Reviewed by:	arch@ (twice)

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Thu Jun 24 16:28:52 2010	(r209509)
+++ head/Makefile.inc1	Thu Jun 24 16:32:20 2010	(r209510)
@@ -165,7 +165,7 @@ BUILD_ARCH!=	uname -p
 .if ${MACHINE} == ${TARGET} && !defined(CROSS_BUILD_TESTING)
 OBJTREE=	${MAKEOBJDIRPREFIX}
 .else
-OBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}
+OBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
 .endif
 WORLDTMP=	${OBJTREE}${.CURDIR}/tmp
 # /usr/games added for fortune which depend on strfile



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