Date: Thu, 31 May 2018 23:48:27 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r334457 - stable/11/release Message-ID: <201805312348.w4VNmR50005833@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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'); \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805312348.w4VNmR50005833>