01d92e1c38
Inspired by a patch from Martin Bark <martin@barkynet.com>, this fixes autobuild issues related to packages not downloading from alioth.debian URLs. This patches is meant to be "temporary" until the URLs are fixed by debian. Fixes: http://autobuild.buildroot.org/results/8c3/8c34649a7f98f60f14cff8b32fa2f8e82b1afeb6 http://autobuild.buildroot.org/results/7e3/7e34e73e40fdb0e04bd63fa889f9bc14f7e30536 Signed-off-by: Ryan Barnett <rjbarnet@rockwellcollins.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
696 B
Makefile
21 lines
696 B
Makefile
################################################################################
|
|
#
|
|
# minicom
|
|
#
|
|
################################################################################
|
|
|
|
MINICOM_VERSION = 2.7
|
|
MINICOM_SITE = http://sources.buildroot.net/
|
|
MINICOM_LICENSE = GPLv2+
|
|
MINICOM_LICENSE_FILES = COPYING
|
|
|
|
# pkg-config is only used to check for liblockdev, which we don't have
|
|
# in BR, so instead of adding host-pkgconf as a dependency, simply
|
|
# make sure the host version isn't used so we don't end up with problems
|
|
# if people have liblockdev1-dev installed
|
|
MINICOM_CONF_ENV = PKG_CONFIG=/bin/false
|
|
|
|
MINICOM_DEPENDENCIES = ncurses $(if $(BR2_ENABLE_LOCALE),,libiconv)
|
|
|
|
$(eval $(autotools-package))
|