From: Eneas U de Queiroz Date: Sun, 4 Feb 2024 20:35:53 +0000 (-0300) Subject: xmlrpc-c: install dev files only with 1st variant X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=fb3d67801e07c4bd3d971136c049d8f02b7e360e;p=feed%2Fpackages.git xmlrpc-c: install dev files only with 1st variant This adds a variant check to run InstallDev only when the first variant is built. Otherwise, a dependent package may install the default version, even though the second variant ends up in the staging dir, causing downstream packages to miss library dependencies, such as: Package rtorrent-rpc is missing dependencies for the following libraries: libxmlrpc_xmlparse.so.3 libxmlrpc_xmltok.so.3 Signed-off-by: Eneas U de Queiroz --- diff --git a/libs/xmlrpc-c/Makefile b/libs/xmlrpc-c/Makefile index 758144a7fe..86deeb6481 100644 --- a/libs/xmlrpc-c/Makefile +++ b/libs/xmlrpc-c/Makefile @@ -114,7 +114,9 @@ define Build/Compile $(call Build/Compile/Default) endef -define Build/InstallDev +TARGET_VARIANT=$(if $(ALL_VARIANTS),$(if $(VARIANT),$(VARIANT),$(firstword $(ALL_VARIANTS)))) +ifeq ($(if $(TARGET_VARIANT),$(BUILD_VARIANT)),$(TARGET_VARIANT)) + define Build/InstallDev $(INSTALL_DIR) \ $(1)/usr/include \ $(1)/usr/lib \ @@ -140,7 +142,8 @@ define Build/InstallDev $(INSTALL_DATA) \ $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc \ $(1)/usr/lib/pkgconfig/ -endef + endef +endif define Package/xmlrpc-c-libxml2/install $(INSTALL_DIR) \