Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Feb 2010 23:17:47 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r203457 - user/imp/tbemd
Message-ID:  <201002032317.o13NHlK3037663@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Wed Feb  3 23:17:47 2010
New Revision: 203457
URL: http://svn.freebsd.org/changeset/base/203457

Log:
  Now that you can do builds of BOTH endians at once, you need to have
  MACHINE_ARCH in the path.  But you also need MACHINE for the i386/pc98
  case.  So use both.  This lets mipseb and mipsel be done at the same
  time into the same MAKEOBJDIRPREFIX tree...

Modified:
  user/imp/tbemd/Makefile.inc1

Modified: user/imp/tbemd/Makefile.inc1
==============================================================================
--- user/imp/tbemd/Makefile.inc1	Wed Feb  3 22:31:51 2010	(r203456)
+++ user/imp/tbemd/Makefile.inc1	Wed Feb  3 23:17:47 2010	(r203457)
@@ -166,7 +166,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?201002032317.o13NHlK3037663>