From: Jo-Philipp Wich Date: Tue, 16 Jan 2018 15:30:36 +0000 (+0100) Subject: bird: fix build dependencies X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=c5f18d5a2a83cb1109aa68ce52dfb05f4c307a4f;p=feed%2Frouting.git bird: fix build dependencies The PKG_BUILD_DEPENDS variable must refer to source packages instead of binary package names. Fixes the following errors on current OpenWrt master: Upon scripts/feeds install: WARNING: No feed for source package 'libncurses' found WARNING: No feed for source package 'libreadline' found Upon metadata scanning and dependency resolution: WARNING: Makefile 'package/feeds/routing/bird/Makefile' has a build dependency on 'libncurses', which does not exist WARNING: Makefile 'package/feeds/routing/bird/Makefile' has a build dependency on 'libreadline', which does not exist Signed-off-by: Jo-Philipp Wich --- diff --git a/bird/Makefile b/bird/Makefile index f691add..b44114e 100644 --- a/bird/Makefile +++ b/bird/Makefile @@ -13,7 +13,7 @@ PKG_RELEASE:=1 PKG_SOURCE:=bird-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=ftp://bird.network.cz/pub/bird PKG_MD5SUM:=39c51cf57c3ba8b5978b2a657ffa2f647ec7f3ae643e91cf42ee5cb070cf7e7c -PKG_BUILD_DEPENDS:=libncurses libreadline +PKG_BUILD_DEPENDS:=ncurses readline PKG_MAINTAINER:=Álvaro Fernández Rojas PKG_LICENSE:=GPL-2.0