Browse Source

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>
lilik-openwrt-22.03
p-wassi 8 years ago
committed by GitHub
parent
commit
9679056507
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      net/cifs-utils/Makefile

+ 2
- 1
net/cifs-utils/Makefile View File

@ -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


Loading…
Cancel
Save