1029d7edbb
Without using the pkg-config the dependencies are not included for a static linking so it fails to build. These failures are fixed by linking the libintl library that is a dependency of the popt library. This commit to be useful requires the previous commit 'popt: add to the "popt.pc" file the libintl library'. Fixes: http://autobuild.buildroot.net/results/159bf5730414ca7f73dcdae95090177355193636 http://autobuild.buildroot.net/results/ebe6ab7fc0f2cff98de06b3dc374730da9e9e4f2 Minimal defconfig to reproduce the build failure: BR2_STATIC_LIBS=y BR2_TOOLCHAIN_BUILDROOT_LOCALE=y BR2_PACKAGE_GETTEXT=y BR2_PACKAGE_LOGROTATE=y [Thomas: fix commit log, since the library is named 'popt', not 'opt'.] Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
813 B
Makefile
27 lines
813 B
Makefile
################################################################################
|
|
#
|
|
# logrotate
|
|
#
|
|
################################################################################
|
|
|
|
LOGROTATE_VERSION = 3.8.7
|
|
LOGROTATE_SITE = https://www.fedorahosted.org/releases/l/o/logrotate
|
|
LOGROTATE_LICENSE = GPLv2+
|
|
LOGROTATE_LICENSE_FILES = COPYING
|
|
|
|
LOGROTATE_DEPENDENCIES = popt host-pkgconf
|
|
|
|
define LOGROTATE_BUILD_CMDS
|
|
$(MAKE) CC="$(TARGET_CC) $(TARGET_CFLAGS)" LDFLAGS="$(LDFLAGS)" \
|
|
LOADLIBES="$(shell $(PKG_CONFIG_HOST_BINARY) --libs popt)" \
|
|
-C $(@D)
|
|
endef
|
|
|
|
define LOGROTATE_INSTALL_TARGET_CMDS
|
|
$(MAKE) PREFIX=$(TARGET_DIR) -C $(@D) install
|
|
$(INSTALL) -m 0644 package/logrotate/logrotate.conf $(TARGET_DIR)/etc/logrotate.conf
|
|
$(INSTALL) -d -m 0755 $(TARGET_DIR)/etc/logrotate.d
|
|
endef
|
|
|
|
$(eval $(generic-package))
|