aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2022-06-13 17:35:40 +0000
committerBrooks Davis <brooks@FreeBSD.org>2022-06-13 17:35:40 +0000
commit9f7588dd93e55b7b361c949dd91da8aba9d99ac1 (patch)
treee3d884f828cb63f2f75bb28ff3d0b045ca374911 /include
parentf6fada5eed38a8ee2338c1747b9fef587c3ae3da (diff)
downloadsrc-9f7588dd93e55b7b361c949dd91da8aba9d99ac1.tar.gz
src-9f7588dd93e55b7b361c949dd91da8aba9d99ac1.zip
amd64: -m32 support for machine/pcpu_aux.h
Install the i386 pcpu_aux.h under /usr/include/i386 on amd64 and include when targeting i386. This is a kernel-only header that is required by procstat's ZFS support. Reviewed by: jhb, imp
Diffstat (limited to 'include')
-rw-r--r--include/i386/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/i386/Makefile b/include/i386/Makefile
index 70d825bab9cf..de270655fb69 100644
--- a/include/i386/Makefile
+++ b/include/i386/Makefile
@@ -14,7 +14,8 @@ INCS= \
# These kernel-only headers are used by procstat's ZFS support.
# This should be fixed.
INCS+= \
- pcpu.h
+ pcpu.h \
+ pcpu_aux.h
INCSDIR= ${INCLUDEDIR}/i386
.include <bsd.prog.mk>