git: 32a79e8557f6 - main - release: Fix make :@ modifier syntax
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 27 Jul 2023 07:38:35 UTC
The branch main has been updated by jrtc27: URL: https://cgit.FreeBSD.org/src/commit/?id=32a79e8557f61a194472ffe431e0379ed64f019f commit 32a79e8557f61a194472ffe431e0379ed64f019f Author: Jessica Clarke <jrtc27@FreeBSD.org> AuthorDate: 2023-07-27 07:36:12 +0000 Commit: Jessica Clarke <jrtc27@FreeBSD.org> CommitDate: 2023-07-27 07:36:12 +0000 release: Fix make :@ modifier syntax This spits out errors but seemingly isn't actually fatal, so was missed. Fixes: 6853d893c7fe ("release: Automatically generate MK_LIB${LIBCOMPAT} and lib${libcompat}-dbg lists") --- release/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/Makefile b/release/Makefile index c10d46247e97..776090b2324a 100644 --- a/release/Makefile +++ b/release/Makefile @@ -167,7 +167,7 @@ disc1: packagesystem cd ${WORLDDIR} && ${IMAKE} installworld installkernel distribution \ DESTDIR=${.OBJDIR}/${.TARGET} MK_AT=no \ MK_INSTALLLIB=no MK_MAIL=no \ - ${_ALL_LIBCOMPATS:@v@MK_LIB$v=no} \ + ${_ALL_LIBCOMPATS:@v@MK_LIB$v=no@} \ MK_TOOLCHAIN=no MK_PROFILE=no \ MK_RESCUE=no MK_DICT=no \ MK_KERNEL_SYMBOLS=no MK_TESTS=no MK_DEBUG_FILES=no \ @@ -208,7 +208,7 @@ bootonly: packagesystem DESTDIR=${.OBJDIR}/${.TARGET} MK_AT=no \ MK_GAMES=no \ MK_INSTALLLIB=no MK_MAIL=no \ - ${_ALL_LIBCOMPATS:@v@MK_LIB$v=no} \ + ${_ALL_LIBCOMPATS:@v@MK_LIB$v=no@} \ MK_TOOLCHAIN=no MK_PROFILE=no \ MK_RESCUE=no MK_DICT=no \ MK_KERNEL_SYMBOLS=no MK_TESTS=no MK_DEBUG_FILES=no \