diff options
author | Sebastian Kemper <sebastian_ml@gmx.net> | 2017-08-31 22:22:46 +0200 |
---|---|---|
committer | Sebastian Kemper <sebastian_ml@gmx.net> | 2017-08-31 22:22:51 +0200 |
commit | f546c741554c93cabd8f753077da89af70925cc9 (patch) | |
tree | a2b43e87ac95db2c9d844f505cd5f86c8cc9755f /libs/libedit | |
parent | 0f2e10a74acca4fabbe9b8067a6603d9a964384a (diff) |
libedit: install pkgconfig file
Some configure scripts rely on pkgconfig to detect libedit, for instance
asterisk-13. Install the file so libedit can be used there as well.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Diffstat (limited to 'libs/libedit')
-rw-r--r-- | libs/libedit/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/libedit/Makefile b/libs/libedit/Makefile index c91a4ee0b..59d98bafc 100644 --- a/libs/libedit/Makefile +++ b/libs/libedit/Makefile @@ -44,6 +44,9 @@ define Build/InstallDev $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libedit.{a,so*} $(1)/usr/lib/ + + $(INSTALL_DIR) $(1)/usr/lib/pkgconfig + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libedit.pc $(1)/usr/lib/pkgconfig endef define Package/libedit/install |