svn commit: r329143 - stable/11/sys/boot
Kyle Evans
kevans at FreeBSD.org
Sun Feb 11 22:16:25 UTC 2018
Author: kevans
Date: Sun Feb 11 22:16:24 2018
New Revision: 329143
URL: https://svnweb.freebsd.org/changeset/base/329143
Log:
Correct check: BOOT_FORTH is MK_FORTH in makefiles.
This is a direct commit to stable/11.
Modified:
stable/11/sys/boot/loader.mk
Modified: stable/11/sys/boot/loader.mk
==============================================================================
--- stable/11/sys/boot/loader.mk Sun Feb 11 22:09:07 2018 (r329142)
+++ stable/11/sys/boot/loader.mk Sun Feb 11 22:16:24 2018 (r329143)
@@ -68,7 +68,7 @@ SRCS+= pnp.c
.endif
# Forth interpreter
-.if defined(BOOT_FORTH)
+.if defined(MK_FORTH)
SRCS+= interp_forth.c
.include "${BOOTSRC}/ficl.mk"
.endif
More information about the svn-src-stable
mailing list