6a774f400b
The iucode-tool package needs the argp functionality, which is provided built-in by glibc, but not by uClibc and musl. In uClibc configurations, it correctly selects the argp-standalone package to compensate this, but forgets to do so in musl-based configurations. This commit fixes that by selecting the argp-standalone package, and adjusting the dependency in the .mk file. Fixes: http://autobuild.buildroot.net/results/7f8626db69500a84a393053a485f04180c565673/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
707 B
Makefile
23 lines
707 B
Makefile
################################################################################
|
|
#
|
|
# iucode-tool
|
|
#
|
|
################################################################################
|
|
|
|
IUCODE_TOOL_VERSION = 1cbd73013cd4c6b2b287f07f6189eef35cb83ca0
|
|
IUCODE_TOOL_SITE = git://gitorious.org/iucode-tool/iucode-tool.git
|
|
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
|
|
IUCODE_TOOL_CONF_ENV = LIBS="-largp"
|
|
IUCODE_TOOL_DEPENDENCIES = argp-standalone
|
|
endif
|
|
IUCODE_TOOL_AUTORECONF = YES
|
|
IUCODE_TOOL_LICENSE = GPLv2+
|
|
IUCODE_TOOL_LICENSE_FILES = COPYING
|
|
|
|
define IUCODE_TOOL_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 0755 package/iucode-tool/S00iucode-tool \
|
|
$(TARGET_DIR)/etc/init.d/S00iucode-tool
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|