diff options
| author | Romain Naour <romain.naour@openwide.fr> | 2015-08-08 00:47:18 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-08-08 11:16:44 +0200 |
| commit | 51b7086c14cf48bda08e8f6caca4e08433b0ec06 (patch) | |
| tree | 33b1ac4c4e20287b56adc02866a4ee7407b01ec1 | |
| parent | f70c58c2c7fba4d700dae3dd8da07e7449d6d03c (diff) | |
| download | buildroot-51b7086c14cf48bda08e8f6caca4e08433b0ec06.tar.gz buildroot-51b7086c14cf48bda08e8f6caca4e08433b0ec06.zip | |
package/libgpgme: add argp-standalone dependency with musl
Since argp-standalone is only available for uClibc-ng
and musl toolchains, it's safe to link with it when
the package is selected.
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/libgpgme/libgpgme.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libgpgme/libgpgme.mk b/package/libgpgme/libgpgme.mk index ec64d37e8e..186809985c 100644 --- a/package/libgpgme/libgpgme.mk +++ b/package/libgpgme/libgpgme.mk @@ -22,7 +22,7 @@ LIBGPGME_CONF_OPTS = --with-gpg=/usr/bin/gpg \ --disable-gpg-test # Handle argp-standalone or it errors out during build -ifeq ($(BR2_PACKAGE_ARGP_STANDALONE)$(BR2_TOOLCHAIN_USES_UCLIBC),yy) +ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y) LIBGPGME_CONF_ENV += LIBS="-largp" LIBGPGME_DEPENDENCIES += argp-standalone endif |

