diff options
| author | Robert Marko | 2024-04-06 10:05:56 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-04-06 10:10:51 +0000 |
| commit | 076e86041862ff7962c395706238c69fc8b83594 (patch) | |
| tree | 85dc3bd8a1130d954c00545f13e7fae12d675c6e | |
| parent | b3c1c57a35a0974cf931c71f7279ec0e1fc0fa80 (diff) | |
| download | openwrt-076e86041862ff7962c395706238c69fc8b83594.tar.gz | |
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@gmail.com>
| -rw-r--r-- | tools/zstd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |