diff options
| author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2014-08-28 13:16:21 +0100 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2014-08-30 23:57:08 +0200 |
| commit | 0a9a32d6928cd7c4871866b6512a7778d5e0671f (patch) | |
| tree | 0799856da7eefaf94297a4a54c54acebe8e57f85 | |
| parent | 1ddffb0e1a368fbac9c85005202dcc014635d2b4 (diff) | |
| download | buildroot-0a9a32d6928cd7c4871866b6512a7778d5e0671f.tar.gz buildroot-0a9a32d6928cd7c4871866b6512a7778d5e0671f.zip | |
libgpgme: Take into account that gnupg and gnupg2 are mutual exclusive
Avoid that libgpgme can select the gnupg package although gnupg2 has
been already selected. Both packages are mutual exclusive and shouldn't
be selected at the same time.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| -rw-r--r-- | package/libgpgme/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libgpgme/Config.in b/package/libgpgme/Config.in index a303bfae8f..e176dacd13 100644 --- a/package/libgpgme/Config.in +++ b/package/libgpgme/Config.in @@ -2,7 +2,7 @@ config BR2_PACKAGE_LIBGPGME bool "libgpgme" depends on BR2_USE_MMU # libassuan #gnupg is not needed to build, but at runtime. - select BR2_PACKAGE_GNUPG + select BR2_PACKAGE_GNUPG if !BR2_PACKAGE_GNUPG2 select BR2_PACKAGE_LIBGPG_ERROR select BR2_PACKAGE_LIBASSUAN help |

