mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
4d8e68c42f
The kernel headers are installed for DKMS on linux, so don't install them unless we're building on linux. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu> Closes #10506
17 lines
269 B
Makefile
17 lines
269 B
Makefile
COMMON_H = \
|
|
api.h \
|
|
common.h \
|
|
icp.h
|
|
|
|
if CONFIG_USER
|
|
libzfsdir = $(includedir)/libzfs/sys/crypto
|
|
libzfs_HEADERS = $(COMMON_H)
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
|
if BUILD_LINUX
|
|
kerneldir = @prefix@/src/zfs-$(VERSION)/include/sys/crypto
|
|
kernel_HEADERS = $(COMMON_H)
|
|
endif
|
|
endif
|