diff options
author | Joe Slater <jslater@windriver.com> | 2013-09-05 09:51:36 -0700 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2013-10-02 10:02:58 -0400 |
commit | a4c5b95607c3a39e9c53cc008a64c3ec909bf671 (patch) | |
tree | 078164e8d3ffdb6a2d748b5b0fdc3851856de61d | |
parent | 443b867216019e34d4153bf115b5f07e4a1cc268 (diff) | |
download | meta-selinux-a4c5b95607c3a39e9c53cc008a64c3ec909bf671.tar.gz |
tar: add acl dependency information
If acl is a distro feature, we want to depend
on it. Note that without the xattrs patch, tar
cannot deal with acl information.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
-rw-r--r-- | recipes-extended/tar/tar_1.26.bbappend | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes-extended/tar/tar_1.26.bbappend b/recipes-extended/tar/tar_1.26.bbappend index 4b971c5..2aad7a5 100644 --- a/recipes-extended/tar/tar_1.26.bbappend +++ b/recipes-extended/tar/tar_1.26.bbappend | |||
@@ -1,7 +1,15 @@ | |||
1 | PR .= ".2" | 1 | PR .= ".3" |
2 | 2 | ||
3 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | 3 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" |
4 | 4 | ||
5 | SRC_URI += "file://tar-1.24-xattrs.patch" | 5 | SRC_URI += "file://tar-1.24-xattrs.patch" |
6 | 6 | ||
7 | inherit enable-selinux | 7 | inherit enable-selinux |
8 | |||
9 | |||
10 | PACKAGECONFIG += "${@base_contains('DISTRO_FEATURES', 'acl', 'acl', '', d)}" | ||
11 | |||
12 | # configure has no acl enable/disable options! | ||
13 | # | ||
14 | PACKAGECONFIG[acl] = ",,acl," | ||
15 | |||