From c5f18d5a2a83cb1109aa68ce52dfb05f4c307a4f Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 16 Jan 2018 16:30:36 +0100 Subject: [PATCH] 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 --- bird/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2