Force symlink creation.

git-svn-id: svn://svn.openwrt.org/openwrt/packages@13927 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
lars
2009-01-07 18:29:05 +00:00
parent 01ee7cb89c
commit 55a8dfd30f
4 changed files with 9 additions and 9 deletions

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=nfs-utils
PKG_VERSION:=1.1.2
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://downloads.sourceforge.net/nfs/
@ -52,7 +52,7 @@ endef
define Package/nfs-utils/install
$(INSTALL_DIR) $(1)/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/mount.nfs $(1)/sbin/
(cd $(1)/sbin; ln -s mount.nfs mount.nfs4; ln mount.nfs umount.nfs; ln -s mount.nfs umount.nfs4)
(cd $(1)/sbin; ln -sf mount.nfs mount.nfs4; ln -sf mount.nfs umount.nfs; ln -sf mount.nfs umount.nfs4)
endef
$(eval $(call BuildPackage,nfs-utils))