git: 153b6271a740 - main - Fix 'make cscope' with ALL_ARCH defined
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 07 Jan 2022 15:56:00 UTC
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}