svn commit: r203457 - user/imp/tbemd

Warner Losh imp at FreeBSD.org
Wed Feb 3 23:17:47 UTC 2010


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


More information about the svn-src-user mailing list