svn commit: r307686 - head/sys/conf

Warner Losh imp at FreeBSD.org
Thu Oct 20 20:12:35 UTC 2016


Author: imp
Date: Thu Oct 20 20:12:34 2016
New Revision: 307686
URL: https://svnweb.freebsd.org/changeset/base/307686

Log:
  Use MACHINE_ARCH rather than TARGET_ARCH which has no meaning outside
  of Makefile.inc1

Modified:
  head/sys/conf/Makefile.arm

Modified: head/sys/conf/Makefile.arm
==============================================================================
--- head/sys/conf/Makefile.arm	Thu Oct 20 19:55:50 2016	(r307685)
+++ head/sys/conf/Makefile.arm	Thu Oct 20 20:12:34 2016	(r307686)
@@ -74,7 +74,7 @@ FILES_CPU_FUNC = \
 	$S/$M/$M/cpufunc_asm_pj4b.S $S/$M/$M/cpufunc_asm_armv6.S \
 	$S/$M/$M/cpufunc_asm_armv7.S
 
-.if ${TARGET_ARCH} != "armv6" && defined(KERNPHYSADDR)
+.if ${MACHINE_ARCH} != "armv6" && defined(KERNPHYSADDR)
 KERNEL_EXTRA=trampoline
 KERNEL_EXTRA_INSTALL=kernel.gz.tramp
 trampoline: ${KERNEL_KO}.tramp


More information about the svn-src-all mailing list