diff options
| author | Hauke Mehrtens | 2024-07-27 17:29:04 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-07-28 17:30:35 +0000 |
| commit | 91573ac145aa70a12b0984ec75507ac648569240 (patch) | |
| tree | 40b87d62f8d2f6765979210bbafa2b6bcaf6059a | |
| parent | d261be1d9e850a25fa6747a84595a8e170a029ac (diff) | |
| download | openwrt-91573ac145aa70a12b0984ec75507ac648569240.tar.gz | |
ncurses: Fix path in ncursesw.pc
The file contains the the /usr/lib path from the toolchain directory and
not from the target directory. The /usr/lib directory for the toolchain
is empty and the shared library is not in the specified paths. On RISCV
the linker of util-linux was finding the libncursesw.so in my host
system, tried to link against it and failed. Fix the .pc file.
Fixes: #15942
Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Link: https://github.com/openwrt/openwrt/pull/16018
Signed-off-by: Robert Marko <robimarko@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 0958051533..0fcc388840 100644 --- a/package/libs/ncurses/Makefile +++ b/package/libs/ncurses/Makefile @@ -181,6 +181,8 @@ define Build/InstallDev $(SED) 's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' -e 's/$$$$INCS //g' \ $(2)/bin/ncursesw6-config ln -sf $(STAGING_DIR)/host/bin/ncursesw6-config $(1)/usr/bin/ncursesw6-config + $(SED) 's,$(TOOLCHAIN_DIR),$(STAGING_DIR),g' \ + $(1)/usr/lib/pkgconfig/ncursesw.pc endef define Host/Compile |