diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2013-11-21 01:26:54 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-12 16:56:38 +0000 |
commit | 06c566596a92a309ca228a209f14d03b69a611c9 (patch) | |
tree | 35528db4e4c2652a70ac13d3af5c8836fab23beb | |
parent | 66387677cbd85ba4a76a254942377621acd68249 (diff) | |
download | openembedded-core-06c566596a92a309ca228a209f14d03b69a611c9.tar.gz openembedded-core-06c566596a92a309ca228a209f14d03b69a611c9.tar.bz2 openembedded-core-06c566596a92a309ca228a209f14d03b69a611c9.zip |
nfs-utils: explicitly rdepend on bash
Scripts in nfs-utils need bash as their interpreter, so if nfs-utils
doesn't explicitly rdepend on bash, we would experience build failures
if we add nfs-utils to glibc-small images.
Add bash to RDEPENDS to solve this problem.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-rw-r--r-- | meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.8.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.8.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.8.bb index e3e8136c27..580755ce04 100644 --- a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.8.bb +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.8.bb @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=95f3a93a5c3c7888de623b46ea085a84" # util-linux for libblkid DEPENDS = "libcap libnfsidmap libevent util-linux sqlite3" -RDEPENDS_${PN} = "rpcbind" +RDEPENDS_${PN} = "rpcbind bash" RRECOMMENDS_${PN} = "kernel-module-nfsd" SRC_URI = "${KERNELORG_MIRROR}/linux/utils/nfs-utils/${PV}/nfs-utils-${PV}.tar.bz2 \ |