Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Oct 2016 20:12:34 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r307686 - head/sys/conf
Message-ID:  <201610202012.u9KKCYJp074980@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610202012.u9KKCYJp074980>