diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-12-09 19:30:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-12 21:50:10 +0000 |
commit | c09c6e61991b30c99d68fa6c2e5639d490a65e89 (patch) | |
tree | 9526581aa59e6f5786e3f5d308ebb02a4504e72e /meta | |
parent | 48b56cf4912d2ec324d18391865940b675a72c1e (diff) | |
download | openembedded-core-c09c6e61991b30c99d68fa6c2e5639d490a65e89.tar.gz openembedded-core-c09c6e61991b30c99d68fa6c2e5639d490a65e89.tar.bz2 openembedded-core-c09c6e61991b30c99d68fa6c2e5639d490a65e89.zip |
task-core-nfs: Add nfs-utils-client to RDEPENDS
include nfs client in tast-core-nfs as well
this is handy when we need it on target e.g.
testing eglibc needs it and we can just do
EXTRA_IMAGE_FEATURES += "nfs-server"
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/tasks/task-core-nfs.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-core/tasks/task-core-nfs.bb b/meta/recipes-core/tasks/task-core-nfs.bb index 5859fad071..5c7f45562a 100644 --- a/meta/recipes-core/tasks/task-core-nfs.bb +++ b/meta/recipes-core/tasks/task-core-nfs.bb @@ -6,7 +6,7 @@ DESCRIPTION = "NFS tasks for Poky" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" -PR = "r0" +PR = "r1" PACKAGES = "\ task-core-nfs-server \ @@ -17,7 +17,9 @@ PACKAGES = "\ ALLOW_EMPTY = "1" RDEPENDS_task-core-nfs-server = "\ - nfs-utils" + nfs-utils \ + nfs-utils-client \ + " # rpcinfo can be useful but only with glibc images GLIBC_DEPENDENCIES = "glibc-utils" |