lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 9679056507ead2d119a322b837c03bfb39535a8d
parent c212c4aaee66ed42ad3a2c2c71c1e572598bcaed
Author: p-wassi <p.wassi@gmx.at>
Date:   Tue,  1 Nov 2016 19:08:08 +0100

net/cifs-utils: missing dependency

'cifsmount' alone is not able to mount a SMB share, after
having installed kmod-fs-cifs this was possible.
So I guess adding kmod-fs-cifs as a dependency to cifsmount is ok.

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
Diffstat:
Mnet/cifs-utils/Makefile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/cifs-utils/Makefile b/net/cifs-utils/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cifs-utils PKG_VERSION:=6.4 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=http://ftp.samba.org/pub/linux-cifs/cifs-utils PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 @@ -24,6 +24,7 @@ include $(INCLUDE_DIR)/package.mk define Package/cifsmount SECTION:=net CATEGORY:=Network + DEPENDS:=+kmod-fs-cifs TITLE:=CIFS mount utilities URL:=http://wiki.samba.org/index.php/LinuxCIFS_utils endef