1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

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.
This commit is contained in:
Ed Schouten 2015-10-16 10:26:15 +00:00
parent 5873e5fcb2
commit aa40bd817c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=289417

View File

@ -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 \