diff options
author | Haris Okanovic <haris.okanovic@ni.com> | 2019-11-07 16:04:21 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-10 14:06:10 +0000 |
commit | 03fce90c1102b104ce1fa0d9ccac699c0c64bd0e (patch) | |
tree | 1a388edc1d812d6a2fe4b182186cdb75de245539 /meta | |
parent | 1792105f9e9298aeec4562f20313f8e05b7226a6 (diff) | |
download | poky-03fce90c1102b104ce1fa0d9ccac699c0c64bd0e.tar.gz |
opkg: RDEPEND "gnupg-gpg" instead of "gnupg"
gnupg-gpg is a minimal installation of gnupg with enough functionality
to verify signatures and manage keys. Use this package instead of full
gnupg to slim down opkg installations with "--enable-gpg".
(From OE-Core rev: c0d663da05c5a2c466658246feaa7872756ded2c)
Signed-off-by: Haris Okanovic <haris.okanovic@ni.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/opkg/opkg_0.4.1.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-devtools/opkg/opkg_0.4.1.bb b/meta/recipes-devtools/opkg/opkg_0.4.1.bb index 104f07fda8..149ee3ca19 100644 --- a/meta/recipes-devtools/opkg/opkg_0.4.1.bb +++ b/meta/recipes-devtools/opkg/opkg_0.4.1.bb | |||
@@ -32,7 +32,10 @@ OPKGLIBDIR ??= "${target_localstatedir}/lib" | |||
32 | 32 | ||
33 | PACKAGECONFIG ??= "libsolv" | 33 | PACKAGECONFIG ??= "libsolv" |
34 | 34 | ||
35 | PACKAGECONFIG[gpg] = "--enable-gpg,--disable-gpg,gpgme libgpg-error,gnupg" | 35 | PACKAGECONFIG[gpg] = "--enable-gpg,--disable-gpg,\ |
36 | gnupg gpgme libgpg-error,\ | ||
37 | ${@ "gnupg" if ("native" in d.getVar("PN")) else "gnupg-gpg"}\ | ||
38 | " | ||
36 | PACKAGECONFIG[curl] = "--enable-curl,--disable-curl,curl" | 39 | PACKAGECONFIG[curl] = "--enable-curl,--disable-curl,curl" |
37 | PACKAGECONFIG[ssl-curl] = "--enable-ssl-curl,--disable-ssl-curl,curl openssl" | 40 | PACKAGECONFIG[ssl-curl] = "--enable-ssl-curl,--disable-ssl-curl,curl openssl" |
38 | PACKAGECONFIG[openssl] = "--enable-openssl,--disable-openssl,openssl" | 41 | PACKAGECONFIG[openssl] = "--enable-openssl,--disable-openssl,openssl" |