Date: Fri, 7 Jan 2022 15:56:00 GMT From: Mitchell Horne <mhorne@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 153b6271a740 - main - Fix 'make cscope' with ALL_ARCH defined Message-ID: <202201071556.207Fu036021408@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=153b6271a740e86ed2ef8f51f0bb5f57d75a290d commit 153b6271a740e86ed2ef8f51f0bb5f57d75a290d Author: Mitchell Horne <mhorne@FreeBSD.org> AuthorDate: 2022-01-07 15:53:52 +0000 Commit: Mitchell Horne <mhorne@FreeBSD.org> CommitDate: 2022-01-07 15:53:52 +0000 Fix 'make cscope' with ALL_ARCH defined The sys/mips directory has been removed. --- sys/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/Makefile b/sys/Makefile index 688a00453b2d..a193bbc2b29d 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -8,7 +8,7 @@ CSCOPEDIRS= bsm cam cddl compat conf contrib crypto ddb dev fs gdb \ rpc security sys ufs vm xdr xen ${CSCOPE_ARCHDIR} .if !defined(CSCOPE_ARCHDIR) .if defined(ALL_ARCH) -CSCOPE_ARCHDIR = amd64 arm arm64 i386 mips powerpc riscv x86 +CSCOPE_ARCHDIR = amd64 arm arm64 i386 powerpc riscv x86 .else CSCOPE_ARCHDIR = ${MACHINE} .if ${MACHINE} != ${MACHINE_CPUARCH}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202201071556.207Fu036021408>