Date: Mon, 6 Nov 2017 15:22:11 +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: r325483 - head/sys/boot Message-ID: <201711061522.vA6FMBSs036513@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711061522.vA6FMBSs036513>