diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-12-07 15:48:30 -0200 |
---|---|---|
committer | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-12-07 16:03:10 -0200 |
commit | 562aea68f7625b701f148b1e885eb9df1b59bd66 (patch) | |
tree | 4170dcc648a74011cfb7fba4455ca7ff05756776 /libs/libndpi | |
parent | bfc2435f7d42d0978755102864a8ecc8bb6518ea (diff) |
libndpi: fix copying of library
The package was copying a symbolic link, not the library itself.
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'libs/libndpi')
-rw-r--r-- | libs/libndpi/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/libndpi/Makefile b/libs/libndpi/Makefile index 1833eaae8..85a626ead 100644 --- a/libs/libndpi/Makefile +++ b/libs/libndpi/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libndpi PKG_VERSION:=2.4 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/ntop/nDPI/tar.gz/$(PKG_VERSION)? @@ -52,7 +52,7 @@ define Build/InstallDev $(INSTALL_DIR) $(1)/usr/lib $(CP) \ - $(PKG_INSTALL_DIR)/usr/local/lib/libndpi.so \ + $(PKG_INSTALL_DIR)/usr/local/lib/libndpi.so* \ $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig @@ -64,7 +64,7 @@ endef define Package/libndpi/install $(INSTALL_DIR) $(1)/usr/lib/ $(CP) \ - $(PKG_INSTALL_DIR)/usr/local/lib/libndpi.so \ + $(PKG_INSTALL_DIR)/usr/local/lib/libndpi.so* \ $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/bin/ $(CP) \ |