Date: Sun, 23 Apr 2023 16:48:31 -0700 From: "Simon J. Gerraty" <sjg@juniper.net> To: Ed Maste <emaste@freebsd.org> Cc: <src-committers@freebsd.org>, <dev-commits-src-all@freebsd.org>, <dev-commits-src-main@freebsd.org>, <sjg@juniper.net> Subject: Re: git: 390c31c4289e - main - meta.sys.mk: downgrade missing Filemon error to warning Message-ID: <96156.1682293711@kaos.jnpr.net> In-Reply-To: <CAPyFy2DjiqJvVrukaBgiV7SrxKydsG3dDtp0QedZOJ=o6FNiuQ@mail.gmail.com> References: <202304231451.33NEpwOQ028148@gitrepo.freebsd.org> <CAPyFy2DjiqJvVrukaBgiV7SrxKydsG3dDtp0QedZOJ=o6FNiuQ@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Ed Maste <emaste@freebsd.org> wrote: > no description found for WITH_host_egacy, skipping This is an internal "pseudo" option. I would propose tweaking showconfig to ignore them: diff --git a/Makefile.inc1 b/Makefile.inc1 index 60956d58fd9b..d059d5dd9fea 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -3405,9 +3405,11 @@ check-old: check-old-files check-old-libs check-old= -dirs .PHONY # # showconfig - show build configuration. # +# ignore lower case knobs (not for use with WITH*) +# showconfig: .PHONY @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DE= PENDFILE=3Dno NO_OBJ=3Dyes MACHINE=3D${TARGET} MACHINE_ARCH=3D${TARGET_ARC= H}; \ - ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEP= ENDFILE=3Dno NO_OBJ=3Dyes) 2>&1 | grep ^MK_ | sort -u + ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEP= ENDFILE=3Dno NO_OBJ=3Dyes) 2>&1 | grep '^MK_[A-Z]' | sort -u = .if !empty(KRNLOBJDIR) && !empty(KERNCONF) DTBOUTPUTPATH=3D ${KRNLOBJDIR}/${KERNCONF}/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?96156.1682293711>