diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-11-25 23:45:00 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-11-25 23:45:00 +0100 |
| commit | 83e207d7bc52fbcb38b33dc387f37da333d3e248 (patch) | |
| tree | 6a406bf669fef997d4dd4445101ec45efaaed29c /package/taskd/taskd.mk | |
| parent | fa627738266e5c5c45f6250657ac113cc99df5a3 (diff) | |
| download | buildroot-83e207d7bc52fbcb38b33dc387f37da333d3e248.tar.gz buildroot-83e207d7bc52fbcb38b33dc387f37da333d3e248.zip | |
taskd: fix static linking issue with libuuid/libintl
libuuid depends on libintl in specific scenarios, but since taskd wasn't
using pkg-config to detect libuuid, this dependency on libintl was not
taken into account. This commit adds a patch to taskd that uses
pkg-config to detect libuuid.
Fixes:
http://autobuild.buildroot.net/results/cb5ea871812651025722d42508d4f37702088800/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/taskd/taskd.mk')
| -rw-r--r-- | package/taskd/taskd.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/taskd/taskd.mk b/package/taskd/taskd.mk index 34a260ea0e..b19be68912 100644 --- a/package/taskd/taskd.mk +++ b/package/taskd/taskd.mk @@ -8,6 +8,6 @@ TASKD_VERSION = 1.1.0 TASKD_SITE = http://taskwarrior.org/download TASKD_LICENSE = MIT TASKD_LICENSE_FILES = COPYING -TASKD_DEPENDENCIES = gnutls util-linux +TASKD_DEPENDENCIES = gnutls util-linux host-pkgconf $(eval $(cmake-package)) |

