[openwrt/openwrt] tools: zstd: install headers as well

LEDE Commits lede-commits at lists.infradead.org
Sat Apr 6 03:11:00 PDT 2024


robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/076e86041862ff7962c395706238c69fc8b83594

commit 076e86041862ff7962c395706238c69fc8b83594
Author: Robert Marko <robimarko at gmail.com>
AuthorDate: Sat Apr 6 12:05:56 2024 +0200

    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 <robimarko at gmail.com>
---
 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
 




More information about the lede-commits mailing list