diff options
author | Armin Kuster <akuster808@gmail.com> | 2016-04-16 10:00:01 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-04-21 21:33:53 +0200 |
commit | 40d7128be031381218c2218594f5512dd9f67588 (patch) | |
tree | 790a7e492dfe548728ed6b37feb9564c82e3acc1 /meta-oe | |
parent | fb30db691e40533944ba236f642b25641c6d0269 (diff) | |
download | meta-openembedded-40d7128be031381218c2218594f5512dd9f67588.tar.gz |
udisk2: fix build issue with missing depends
checking for sys/acl.h... no
| configure: error: *** ACL headers not found.
| NOTE: The following config.log files may provide further information.
add acl to DEPENDS
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/udisks/udisks2_2.1.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/udisks/udisks2_2.1.5.bb b/meta-oe/recipes-support/udisks/udisks2_2.1.5.bb index d27394836..72db88687 100644 --- a/meta-oe/recipes-support/udisks/udisks2_2.1.5.bb +++ b/meta-oe/recipes-support/udisks/udisks2_2.1.5.bb | |||
@@ -2,7 +2,7 @@ SUMMARY = "udisks provides dbus interfaces for disks and storage devices" | |||
2 | LICENSE = "GPLv2+ & LGPLv2+" | 2 | LICENSE = "GPLv2+ & LGPLv2+" |
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=dd79f6dbbffdbc8e86b086a8f0c0ef43" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=dd79f6dbbffdbc8e86b086a8f0c0ef43" |
4 | 4 | ||
5 | DEPENDS = "libatasmart polkit libgudev dbus-glib glib-2.0 intltool-native gnome-common-native" | 5 | DEPENDS = "acl libatasmart polkit libgudev dbus-glib glib-2.0 intltool-native gnome-common-native" |
6 | DEPENDS += "${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" | 6 | DEPENDS += "${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" |
7 | 7 | ||
8 | RDEPENDS_${PN} = "acl" | 8 | RDEPENDS_${PN} = "acl" |