From: Daniel Wagner Date: Mon, 27 Sep 2021 13:36:58 +0000 (+0200) Subject: Makefile: Install log.h header file X-Git-Tag: v1.0-rc0~98^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=0fcee9faad6ad80c785576b02ad9a04deac56b12;p=users%2Fsagi%2Flibnvme.git Makefile: Install log.h header file Add the missing nvme/log.h header file. Signed-off-by: Daniel Wagner --- diff --git a/src/Makefile b/src/Makefile index 721590f3..40744d42 100644 --- a/src/Makefile +++ b/src/Makefile @@ -47,7 +47,7 @@ libccan_sobjs := $(patsubst %.c,%.os,$(libccan_srcs)) $(libccan_objs) $(libccan_sobjs): $(libccan_headers) $(CCANDIR)config.h libnvme_priv := nvme/private.h -libnvme_api := libnvme.h nvme/types.h nvme/ioctl.h nvme/filters.h nvme/tree.h nvme/util.h nvme/fabrics.h +libnvme_api := libnvme.h nvme/types.h nvme/ioctl.h nvme/filters.h nvme/tree.h nvme/util.h nvme/fabrics.h nvme/log.h libnvme_srcs := nvme/ioctl.c nvme/filters.c nvme/fabrics.c nvme/util.c nvme/tree.c nvme/log.c nvme/cleanup.c ifeq ($(CONFIG_JSONC),y) override libnvme_srcs += nvme/json.c