diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> | 2014-11-03 11:13:51 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-09 10:21:22 +0000 |
commit | b3ea9b640487cc463d60db1b9103693c45f8bee4 (patch) | |
tree | a36c7e436b41e7c8531b08da411e18bb6d6f53b8 /meta | |
parent | 9e3c886ad5e10919977cd5b6901e124ce27e1084 (diff) | |
download | poky-b3ea9b640487cc463d60db1b9103693c45f8bee4.tar.gz |
apt: Add missing running depency debianutils
apt-file calls run-parts with options --list and --regex:
root@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.
(From OE-Core rev: 40dd71a4e0beade84ecd686559243a10e55c3a2d)
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/apt/apt_0.9.9.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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 86ffe66ca4..77cbff1c0c 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 @@ | |||
1 | DEPENDS = "curl db" | 1 | DEPENDS = "curl db" |
2 | RDEPENDS_${PN} = "dpkg bash" | 2 | RDEPENDS_${PN} = "dpkg bash debianutils" |
3 | LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=0636e73ff0215e8d672dc4c32c317bb3" | 3 | LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=0636e73ff0215e8d672dc4c32c317bb3" |
4 | require apt.inc | 4 | require apt.inc |
5 | 5 | ||