mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Properly use MACHINE_CPUARCH for finding cloudabi*_sysvec.c.
The build of the cloudabi32 kernel module currently fails for PC98. In the case of PC98, we just want to use the code for i386. Reported by: np
This commit is contained in:
parent
d845f44fb1
commit
fb90d86466
2 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@
|
|||
SYSDIR?=${.CURDIR}/../..
|
||||
|
||||
.PATH: ${SYSDIR}/compat/cloudabi32
|
||||
.PATH: ${SYSDIR}/${MACHINE}/cloudabi32
|
||||
.PATH: ${SYSDIR}/${MACHINE_CPUARCH}/cloudabi32
|
||||
|
||||
KMOD= cloudabi32
|
||||
SRCS= cloudabi32_fd.c cloudabi32_module.c cloudabi32_poll.c \
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
SYSDIR?=${.CURDIR}/../..
|
||||
|
||||
.PATH: ${SYSDIR}/compat/cloudabi64
|
||||
.PATH: ${SYSDIR}/${MACHINE}/cloudabi64
|
||||
.PATH: ${SYSDIR}/${MACHINE_CPUARCH}/cloudabi64
|
||||
|
||||
KMOD= cloudabi64
|
||||
SRCS= cloudabi64_fd.c cloudabi64_module.c cloudabi64_poll.c \
|
||||
|
|
|
|||
Loading…
Reference in a new issue