mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
b40a77aefc
When the original build system code was added the release component was accidentally omited from the development header install path. This patch adds the missing path component so it's always clear exactly what release your compiling against. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
22 lines
432 B
Makefile
22 lines
432 B
Makefile
SUBDIRS = fs
|
|
|
|
COMMON_H = \
|
|
$(top_srcdir)/include/sys/fm/protocol.h \
|
|
$(top_srcdir)/include/sys/fm/util.h
|
|
|
|
KERNEL_H =
|
|
|
|
USER_H =
|
|
|
|
EXTRA_DIST = $(COMMON_H) $(KERNEL_H) $(USER_H)
|
|
|
|
if CONFIG_USER
|
|
libzfsdir = $(includedir)/libzfs/sys/fm
|
|
libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
|
kerneldir = /usr/src/zfs-$(ZFS_META_VERSION)-$(ZFS_META_RELEASE)/$(LINUX_VERSION)/sys/fm
|
|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
|
endif
|