From 8e7b93ecba252e019e84b33e5c505a79ffe90a84 Mon Sep 17 00:00:00 2001 From: Rob Norris Date: Tue, 5 Mar 2024 20:08:45 +1100 Subject: [PATCH] freebsd: fix missing headers in distribution tarball arc_os.h and freebsd_event.h aren't included in release tarballs, so the build fails on FreeBSD. This fixes it. Signed-off-by: Rob Norris Sponsored-by: https://despairlabs.com/sponsor/ --- include/os/freebsd/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/os/freebsd/Makefile.am b/include/os/freebsd/Makefile.am index 9819e534b7..551f75f42a 100644 --- a/include/os/freebsd/Makefile.am +++ b/include/os/freebsd/Makefile.am @@ -80,7 +80,9 @@ noinst_HEADERS = \ %D%/spl/sys/zmod.h \ %D%/spl/sys/zone.h \ \ + %D%/zfs/sys/arc_os.h \ %D%/zfs/sys/freebsd_crypto.h \ + %D%/zfs/sys/freebsd_event.h \ %D%/zfs/sys/vdev_os.h \ %D%/zfs/sys/zfs_bootenv_os.h \ %D%/zfs/sys/zfs_context_os.h \