svn commit: r334457 - stable/11/release

Marius Strobl marius at FreeBSD.org
Thu May 31 23:48:28 UTC 2018


Author: marius
Date: Thu May 31 23:48:27 2018
New Revision: 334457
URL: https://svnweb.freebsd.org/changeset/base/334457

Log:
  Akin r302691 in head, synchronize the build stripping for the disc1
  image with that of the bootonly image (but similarly modulo games
  and groff(1)) as the amd64 disc1 image is overflowing. This also
  removes the redundant MK_LLDB.
  
  This is a direct commit to stable/11 rather than a MFC of r302691 as
  the the disc1 image stripping previously has been directly modified
  in stable/11 by r303027.
  
  Approved by:	re (gjb)

Modified:
  stable/11/release/Makefile

Modified: stable/11/release/Makefile
==============================================================================
--- stable/11/release/Makefile	Thu May 31 22:41:07 2018	(r334456)
+++ stable/11/release/Makefile	Thu May 31 23:48:27 2018	(r334457)
@@ -174,10 +174,11 @@ disc1: packagesystem
 # Install system
 	mkdir -p ${.TARGET}
 	cd ${WORLDDIR} && ${IMAKE} installkernel installworld distribution \
-		DESTDIR=${.OBJDIR}/${.TARGET} MK_RESCUE=no MK_KERNEL_SYMBOLS=no \
-		MK_PROFILE=no MK_MAIL=no MK_TESTS=no MK_LIB32=no \
-		MK_DEBUG_FILES=no MK_LLDB=no \
-		MK_TOOLCHAIN=no
+	    DESTDIR=${.OBJDIR}/${.TARGET} MK_AMD=no MK_AT=no \
+	    MK_INSTALLLIB=no MK_LIB32=no MK_MAIL=no \
+	    MK_NCP=no MK_TOOLCHAIN=no MK_PROFILE=no \
+	    MK_RESCUE=no MK_DICT=no \
+	    MK_KERNEL_SYMBOLS=no MK_TESTS=no MK_DEBUG_FILES=no
 # Copy distfiles
 	mkdir -p ${.TARGET}/usr/freebsd-dist
 	for dist in MANIFEST $$(ls *.txz | grep -vE -- '(base|lib32|kernel)-dbg'); \


More information about the svn-src-all mailing list