diff options
| author | Andy Walsh | 2018-07-26 08:34:33 +0000 |
|---|---|---|
| committer | John Crispin | 2018-07-30 08:43:37 +0000 |
| commit | 1639ebcb061abb3664e0b80f62f0019e37fda68e (patch) | |
| tree | d476fcfc0f2b0b1fdff3aa2cb6514a9ce32a7ed1 | |
| parent | 7d7323bccd6df4917f3a97e54cb237ee3849ca17 (diff) | |
| download | openwrt-1639ebcb061abb3664e0b80f62f0019e37fda68e.tar.gz | |
ncurses: install lib on host build
Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
| -rw-r--r-- | package/libs/ncurses/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/libs/ncurses/Makefile b/package/libs/ncurses/Makefile index 95f05fa711..94c968816f 100644 --- a/package/libs/ncurses/Makefile +++ b/package/libs/ncurses/Makefile @@ -164,6 +164,8 @@ endef define Host/Install $(INSTALL_BIN) $(HOST_BUILD_DIR)/progs/tic $(STAGING_DIR_HOST)/bin/tic + $(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/lib/ + $(INSTALL_DATA) $(HOST_BUILD_DIR)/lib/libncurses.a $(STAGING_DIR_HOSTPKG)/lib/ endef $(eval $(call HostBuild)) |