Date: Wed, 20 Jan 2021 10:37:42 GMT From: Alex Richardson <arichardson@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: db4b5a16a30a - main - Minor simplification of MK_PMC case in usr.sbin/Makefile Message-ID: <202101201037.10KAbgGU093406@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by arichardson: URL: https://cgit.FreeBSD.org/src/commit/?id=db4b5a16a30a7587fc12812d5c8a018fa7a16ded commit db4b5a16a30a7587fc12812d5c8a018fa7a16ded Author: Alex Richardson <arichardson@FreeBSD.org> AuthorDate: 2021-01-20 09:52:58 +0000 Commit: Alex Richardson <arichardson@FreeBSD.org> CommitDate: 2021-01-20 09:52:58 +0000 Minor simplification of MK_PMC case in usr.sbin/Makefile MK_PMC is already guarded by MK_CXX in src.opts.mk, so we can actually merge it with the following SUBDIR statement after c1a3d7f20696. Suggested By: jrtc27 --- usr.sbin/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 2e01b0fcf847..da61617e408b 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -186,8 +186,7 @@ SUBDIR.${MK_NTP}+= ntp SUBDIR.${MK_OPENSSL}+= keyserv SUBDIR.${MK_PF}+= ftp-proxy SUBDIR.${MK_PKGBOOTSTRAP}+= pkg -SUBDIR.${MK_PMC}.${MK_CXX}+= pmc -SUBDIR.${MK_PMC}+= pmcannotate pmccontrol pmcstat pmcstudy +SUBDIR.${MK_PMC}+= pmc pmcannotate pmccontrol pmcstat pmcstudy SUBDIR.${MK_PORTSNAP}+= portsnap SUBDIR.${MK_PPP}+= ppp SUBDIR.${MK_QUOTAS}+= edquota
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101201037.10KAbgGU093406>