From ee1cddf922985580021062f8cd34f795a1a285eb Mon Sep 17 00:00:00 2001 From: bz Date: Sat, 9 Jan 2010 23:37:29 +0000 Subject: 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 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e7c4c5f..231d71b 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.1