diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2014-09-30 17:01:24 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-01 09:07:41 +0100 |
commit | d31fc181005734953c70ba9338d6a5eb88b6fe8b (patch) | |
tree | 3ec3dd609f3c8cc6ee38062f79caf9335193dd25 /meta/recipes-devtools | |
parent | 81bb7a163d7e3c0bdcc72894ef731521d58edf90 (diff) | |
download | openembedded-core-d31fc181005734953c70ba9338d6a5eb88b6fe8b.tar.gz openembedded-core-d31fc181005734953c70ba9338d6a5eb88b6fe8b.tar.bz2 openembedded-core-d31fc181005734953c70ba9338d6a5eb88b6fe8b.zip |
apt: apt-key binary was not being installed, including it in the installation
[YOCTO #6476]
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/apt/apt-package.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/apt/apt-package.inc b/meta/recipes-devtools/apt/apt-package.inc index 0897d3a9fc..a553aa21fe 100644 --- a/meta/recipes-devtools/apt/apt-package.inc +++ b/meta/recipes-devtools/apt/apt-package.inc @@ -42,6 +42,7 @@ FILES_${PN}-dev = "${libdir}/libapt*.so ${includedir}" do_install () { set -x install -d ${D}${bindir} + install -m 0755 bin/apt-key ${D}${bindir}/ install -m 0755 bin/apt-cdrom ${D}${bindir}/ install -m 0755 bin/apt-get ${D}${bindir}/ install -m 0755 bin/apt-config ${D}${bindir}/ |