svn commit: r209510 - head

Warner Losh imp at FreeBSD.org
Thu Jun 24 16:32:20 UTC 2010


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


More information about the svn-src-head mailing list