svn commit: r201960 - head

Bjoern A. Zeeb bz at FreeBSD.org
Sat Jan 9 23:37:29 UTC 2010


Author: bz
Date: Sat Jan  9 23:37:29 2010
New Revision: 201960
URL: http://svn.freebsd.org/changeset/base/201960

Log:
  Use uname -m [1] and rename BUILD_ARCH to XMACHINE[2].
  
  Submitted by:	nyan[1], imp[2]
  MFC after:	27 days
  X-MFC with:	r201815

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Sat Jan  9 23:36:51 2010	(r201959)
+++ head/Makefile	Sat Jan  9 23:37:29 2010	(r201960)
@@ -321,8 +321,8 @@ universe_${target}:
 	@echo ">> ${target} completed on `LC_ALL=C date`"
 .endfor
 universe_kernels: universe_kernconfs
-BUILD_ARCH!=	uname -p
-TARGET?=	${BUILD_ARCH}
+XMACHINE!=	uname -m
+TARGET?=	${XMACHINE}
 KERNCONFS!=	cd ${.CURDIR}/sys/${TARGET}/conf && \
 		find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
 		! -name DEFAULTS ! -name NOTES


More information about the svn-src-head mailing list