Skip to content

Commit

Permalink
tools: zstd: install headers as well
Browse files Browse the repository at this point in the history
We forgot to make sure install-includes is called for the libzstd in
order for it to install the required headers.

Fixes: 4b920e7 ("tools: zstd: convert to make and drop meson dependency")
Signed-off-by: Robert Marko <[email protected]>
  • Loading branch information
robimarko committed Apr 6, 2024
1 parent b3c1c57 commit 076e860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/zstd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 076e860

Please sign in to comment.