From: Vicente Olivert Riera Date: Tue, 17 Jun 2014 10:23:13 +0000 (+0100) Subject: pinentry: Some toolchains need -pthread in the linker command line X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=23c48fd8b851591f416d3d9ac8363370c13a6e75;p=buildroot.git pinentry: Some toolchains need -pthread in the linker command line Some toolchains, like Sourcery Codebench 2013.05, need -pthread to be added to the linker command line when linking pinentry-qt. Fixes: http://autobuild.buildroot.net/results/6be/6be109ccedec603a67cebdb31b55865dcce0e128/ Signed-off-by: Vicente Olivert Riera Reviewed-by: Markos Chandras Signed-off-by: Peter Korsgaard --- diff --git a/package/pinentry/pinentry.mk b/package/pinentry/pinentry.mk index 11640a6792..f3401696b3 100644 --- a/package/pinentry/pinentry.mk +++ b/package/pinentry/pinentry.mk @@ -39,6 +39,9 @@ endif # pinentry-qt4 backend ifeq ($(BR2_PACKAGE_PINENTRY_QT4),y) +# -pthread needs to be passed for certain toolchains +# http://autobuild.buildroot.net/results/6be/6be109ccedec603a67cebdb31b55865dcce0e128/ +PINENTRY_CONF_OPT += LIBS=-pthread PINENTRY_CONF_OPT += --enable-pinentry-qt4 PINENTRY_DEPENDENCIES += qt else