svn commit: r317014 - stable/11/sys/conf

Michal Meloun mmel at FreeBSD.org
Sun Apr 16 09:00:12 UTC 2017


Author: mmel
Date: Sun Apr 16 09:00:10 2017
New Revision: 317014
URL: https://svnweb.freebsd.org/changeset/base/317014

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

Modified:
  stable/11/sys/conf/Makefile.arm
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/conf/Makefile.arm
==============================================================================
--- stable/11/sys/conf/Makefile.arm	Sun Apr 16 08:21:14 2017	(r317013)
+++ stable/11/sys/conf/Makefile.arm	Sun Apr 16 09:00:10 2017	(r317014)
@@ -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