e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
674 B
Makefile
19 lines
674 B
Makefile
#############################################################
|
|
#
|
|
# minicom
|
|
#
|
|
#############################################################
|
|
MINICOM_VERSION = 2.6.1
|
|
MINICOM_SOURCE = minicom-$(MINICOM_VERSION).tar.gz
|
|
MINICOM_SITE = http://alioth.debian.org/frs/download.php/3700/
|
|
|
|
# pkg-config is only used to check for liblockdev, which we don't have
|
|
# in BR, so instead of adding host-pkg-config 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))
|