From dc59d98c2ca24a077a9f5f135b86e9737fa6780e Mon Sep 17 00:00:00 2001 From: Nick Hainke Date: Wed, 14 Sep 2022 22:46:09 +0200 Subject: [PATCH] iperf3: fix install section of Makefile and dependencies In the Makefile the library installation was accidentally called "Package/iperf3/install" and not "Package/libiperf3/install". Fix this typo. Thanks to Hartmut spotting this. Also the iperf3-ssl does not need to depend on libiperf3. Fixes ae48be8e2157 ("iperf3: add shared libiperf library and link iperf3 dynamically") Signed-off-by: Nick Hainke --- net/iperf3/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net/iperf3/Makefile b/net/iperf3/Makefile index db3b6e4326..abc691e409 100644 --- a/net/iperf3/Makefile +++ b/net/iperf3/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=iperf PKG_VERSION:=3.11 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://downloads.es.net/pub/iperf @@ -32,19 +32,19 @@ define Package/iperf3/default CATEGORY:=Network TITLE:=Internet Protocol bandwidth measuring tool URL:=https://github.com/esnet/iperf - DEPENDS:=+libiperf3 endef define Package/iperf3 $(call Package/iperf3/default) VARIANT:=nossl + DEPENDS:=+libiperf3 endef define Package/iperf3-ssl $(call Package/iperf3/default) TITLE+= with iperf_auth support VARIANT:=ssl - DEPENDS+=+libopenssl + DEPENDS:=+libopenssl endef define Package/libiperf3 @@ -97,7 +97,7 @@ define Package/iperf3-ssl/install $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/iperf3 $(1)/usr/bin/ endef -define Package/iperf3/install +define Package/libiperf3/install $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libiperf.so.* $(1)/usr/lib endef -- 2.30.2