From 08e3c43607209c947bd3a1b48bb4951cfc08aa8a Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Wed, 20 Sep 2023 17:30:41 +0300 Subject: [PATCH] pppossh: depend on dbclient The package should not only depend on a package dropbear but on the dbclient. Otherwise the dbclient may be disabled during compilation and the dependency will be not satisfied. Signed-off-by: Sergey Ponomarev --- net/pppossh/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/pppossh/Makefile b/net/pppossh/Makefile index 4567ac50b9..7cc739ddb5 100644 --- a/net/pppossh/Makefile +++ b/net/pppossh/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pppossh -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_MAINTAINER:=Yousong Zhou PKG_LICENSE:=GPLv2 @@ -18,7 +18,7 @@ define Package/pppossh SECTION:=net CATEGORY:=Network TITLE:=PPPoSSH (Point-to-Point Protocol over SSH) - DEPENDS:=+ppp +resolveip @(PACKAGE_dropbear||PACKAGE_openssh-client) + DEPENDS:=+ppp +resolveip @(DROPBEAR_DBCLIENT||PACKAGE_openssh-client) PKGARCH:=all endef