[oe-commits] Ricardo Ribalda Delgado : apt: Add missing running depency debianutils

git at git.openembedded.org git at git.openembedded.org
Sun Nov 9 10:21:56 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: 40dd71a4e0beade84ecd686559243a10e55c3a2d
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=40dd71a4e0beade84ecd686559243a10e55c3a2d

Author: Ricardo Ribalda Delgado <ricardo.ribalda at gmail.com>
Date:   Mon Nov  3 11:13:51 2014 +0100

apt: Add missing running depency debianutils

apt-file calls run-parts with options --list and --regex:

root at neopili:~/curro/qtec/qt5022/build-qt5022-cesium/build/tmp/work/bobcat_64-poky-linux/apt/0.9.9.4-r0/apt-0.9.9.4# grep run-parts cmdline/apt-key -rn
187:		for trusted in $(run-parts --list $TRUSTEDPARTS --regex '^.*\.gpg$'); do

busybox implementation of run-parts does not support --regex. And --list option is not enabled on yocto busybox configuration.

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda at gmail.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 meta/recipes-devtools/apt/apt_0.9.9.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/apt/apt_0.9.9.4.bb b/meta/recipes-devtools/apt/apt_0.9.9.4.bb
index 86ffe66..77cbff1 100644
--- a/meta/recipes-devtools/apt/apt_0.9.9.4.bb
+++ b/meta/recipes-devtools/apt/apt_0.9.9.4.bb
@@ -1,5 +1,5 @@
 DEPENDS = "curl db"
-RDEPENDS_${PN} = "dpkg bash"
+RDEPENDS_${PN} = "dpkg bash debianutils"
 LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=0636e73ff0215e8d672dc4c32c317bb3"
 require apt.inc
 



More information about the Openembedded-commits mailing list