From: Julien Grall Date: Sat, 10 Oct 2015 16:16:29 +0000 (+0100) Subject: WORKAROUND: Allow cscope to work with ARM64 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=159a64e07224715f8cc50f35a2dedb1d48c2531c;p=people%2Fjulieng%2Ffreebsd.git WORKAROUND: Allow cscope to work with ARM64 --- diff --git a/sys/Makefile b/sys/Makefile index 75757463779c..84c65fdf5026 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -11,7 +11,7 @@ CSCOPEDIRS= boot bsm cam cddl compat conf contrib crypto ddb dev fs gdb \ CSCOPE_ARCHDIR = amd64 arm arm64 i386 mips pc98 powerpc sparc64 x86 .else CSCOPE_ARCHDIR = ${MACHINE} -.if ${MACHINE} != ${MACHINE_CPUARCH} +.if ${MACHINE} != ${MACHINE_CPUARCH} && ${MACHINE} != "arm64" CSCOPE_ARCHDIR += ${MACHINE_CPUARCH} .endif .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"