diff options
author | Chris Larson <clarson@mvista.com> | 2009-07-15 11:31:56 -0700 |
---|---|---|
committer | Chris Larson <clarson@mvista.com> | 2009-08-26 16:20:45 -0700 |
commit | 8036a378560c907ee618532e25e6fabc1d68fd9d (patch) | |
tree | d6b3d387a217cac53bd00afb9a18d142dde18944 /recipes | |
parent | 09b6a74a6f03bb114cbc3620b00ce60cbd17ab0b (diff) |
nfs-utils: fix the broken /sbin/mount.nfs4 symlink.
Signed-off-by: Chris Larson <clarson@mvista.com>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/nfs-utils/nfs-utils_1.1.2.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/nfs-utils/nfs-utils_1.1.2.bb b/recipes/nfs-utils/nfs-utils_1.1.2.bb index 350c195d92..7f29d8a851 100644 --- a/recipes/nfs-utils/nfs-utils_1.1.2.bb +++ b/recipes/nfs-utils/nfs-utils_1.1.2.bb @@ -3,7 +3,7 @@ PRIORITY = "optional" SECTION = "console/network" LICENSE = "GPL" -PR = "r4" +PR = "r5" DEPENDS = "e2fsprogs-libs tcp-wrappers libevent" @@ -57,7 +57,7 @@ do_install() { install -m 0755 ${S}/utils/showmount/showmount ${D}${sbindir}/showmount install -m 0755 ${S}/utils/statd/statd ${D}${sbindir}/statd - ln -s ${D}/${base_sbindir}/mount.nfs ${D}/${base_sbindir}/mount.nfs4 + ln -s ${base_sbindir}/mount.nfs ${D}/${base_sbindir}/mount.nfs4 install -d ${D}${mandir}/man8 install -m 0644 ${S}/utils/exportfs/exportfs.man ${D}${mandir}/man8/exportfs.8 |