]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/libgpgme: add argp-standalone dependency with musl
authorRomain Naour <romain.naour@openwide.fr>
Fri, 7 Aug 2015 22:47:18 +0000 (00:47 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 8 Aug 2015 09:16:44 +0000 (11:16 +0200)
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>
package/libgpgme/libgpgme.mk

index ec64d37e8e1a1016d04ff23ca340e8242bb5ee9f..186809985ca403500a218bb00664a3c2fd0b87de 100644 (file)
@@ -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