diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-12-17 23:15:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 23:15:16 -0800 |
commit | e72192ce2da75f94c7804087cb3642cf83ca71aa (patch) | |
tree | d015914548922b5d289afaffe453a041ca30002c | |
parent | b11bbbd4008aa8f7d21a4677bb626577b0cb1bcd (diff) | |
parent | 3d5902838cd5e0291bae15e9c75f5a6c84ffbdb9 (diff) |
Merge pull request #14261 from neheb/cifs2
cifs-utils: link mount utility relative instead of absolute
-rw-r--r-- | net/cifs-utils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/cifs-utils/Makefile b/net/cifs-utils/Makefile index 77905ee7d..0662315ba 100644 --- 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.11 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://download.samba.org/pub/linux-cifs/cifs-utils/ @@ -68,7 +68,7 @@ endef define Package/cifsmount/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/mount.cifs $(1)/usr/sbin/ - $(LN) /usr/sbin/mount.cifs $(1)/usr/sbin/mount.smb3 + $(LN) mount.cifs $(1)/usr/sbin/mount.smb3 endef define Package/smbinfo/install |