c7f4b96471
Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk: $(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)) so it is redundant. This patch removes it from $(PKG)_SITE variable for BR consistency. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
506 B
Makefile
19 lines
506 B
Makefile
################################################################################
|
|
#
|
|
# libconfig
|
|
#
|
|
################################################################################
|
|
|
|
LIBCONFIG_VERSION = 1.4.9
|
|
LIBCONFIG_SITE = http://www.hyperrealm.com/libconfig
|
|
LIBCONFIG_LICENSE = LGPLv2.1+
|
|
LIBCONFIG_LICENSE_FILES = COPYING.LIB
|
|
LIBCONFIG_INSTALL_STAGING = YES
|
|
LIBCONFIG_CONF_OPT = --disable-examples
|
|
|
|
ifneq ($(BR2_INSTALL_LIBSTDCPP),y)
|
|
LIBCONFIG_CONF_OPT += --disable-cxx
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|