svn commit: r325483 - head/sys/boot

Warner Losh imp at FreeBSD.org
Mon Nov 6 15:22:12 UTC 2017


Author: imp
Date: Mon Nov  6 15:22:11 2017
New Revision: 325483
URL: https://svnweb.freebsd.org/changeset/base/325483

Log:
  MACHINE can never be powerpc64, so cleanup code that thinks it can.
  
  Sponsored by: Netflix

Modified:
  head/sys/boot/Makefile

Modified: head/sys/boot/Makefile
==============================================================================
--- head/sys/boot/Makefile	Mon Nov  6 15:22:04 2017	(r325482)
+++ head/sys/boot/Makefile	Mon Nov  6 15:22:11 2017	(r325483)
@@ -13,10 +13,8 @@ SUBDIR+=		man
 
 .include <bsd.arch.inc.mk>
 
-# Pick the machine-dependent subdir based on the target architecture.
-ADIR=			${MACHINE:S/powerpc64/powerpc/}
-.if exists(${.CURDIR}/${ADIR}/.)
-SUBDIR+=		${ADIR}
+.if exists(${.CURDIR}/${MACHINE}/.)
+SUBDIR+=		${MACHINE}
 .endif
 
 .include <bsd.subdir.mk>


More information about the svn-src-all mailing list