package/libxmlrpc: fix check-package warnings

Assignment in conditional blocks must use append-assignment.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Yann E. MORIN 2020-06-22 22:51:08 +02:00
parent ce053a2004
commit 92d73f31b2

View File

@ -40,10 +40,10 @@ LIBXMLRPC_STATIC_OPTS = SHARED_LIB_TYPE=NONE MUST_BUILD_SHLIB=N
endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
LIBXMLRPC_DEPENDENCIES = host-pkgconf openssl
LIBXMLRPC_CONF_OPTS = --enable-abyss-openssl
LIBXMLRPC_DEPENDENCIES += host-pkgconf openssl
LIBXMLRPC_CONF_OPTS += --enable-abyss-openssl
else
LIBXMLRPC_CONF_OPTS = --disable-abyss-openssl
LIBXMLRPC_CONF_OPTS += --disable-abyss-openssl
endif
LIBXMLRPC_MAKE_OPTS += $(LIBXMLRPC_STATIC_OPTS)