From aa40bd817ccc8fd68ceabcfcf601ad560fc3fcab Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Fri, 16 Oct 2015 10:26:15 +0000 Subject: [PATCH] Use the right variable name. MACHINE_CPUARCH expands to aarch64 for arm64, whereas MACHINE always corresponds to the directory name under sys/ that contains the sources for that architecture. --- sys/modules/cloudabi64/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/cloudabi64/Makefile b/sys/modules/cloudabi64/Makefile index 1e1a058acc71..a340e50439c9 100644 --- a/sys/modules/cloudabi64/Makefile +++ b/sys/modules/cloudabi64/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ .PATH: ${.CURDIR}/../../compat/cloudabi64 -.PATH: ${.CURDIR}/../../${MACHINE_CPUARCH}/cloudabi64 +.PATH: ${.CURDIR}/../../${MACHINE}/cloudabi64 KMOD= cloudabi64 SRCS= cloudabi64_fd.c cloudabi64_poll.c cloudabi64_sock.c \