From 076e86041862ff7962c395706238c69fc8b83594 Mon Sep 17 00:00:00 2001 From: Robert Marko Date: Sat, 6 Apr 2024 12:05:56 +0200 Subject: [PATCH] tools: zstd: install headers as well We forgot to make sure install-includes is called for the libzstd in order for it to install the required headers. Fixes: 4b920e799fba ("tools: zstd: convert to make and drop meson dependency") Signed-off-by: Robert Marko --- tools/zstd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/zstd/Makefile b/tools/zstd/Makefile index 5b98d9215f..2bb055c93d 100644 --- a/tools/zstd/Makefile +++ b/tools/zstd/Makefile @@ -34,7 +34,7 @@ define Host/Compile endef define Host/Install - +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR)/lib install-pc install-static PREFIX=$(HOST_BUILD_PREFIX) + +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR)/lib install-pc install-static install-includes PREFIX=$(HOST_BUILD_PREFIX) +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR)/programs install PREFIX=$(HOST_BUILD_PREFIX) endef -- 2.30.2