summaryrefslogtreecommitdiff
path: root/meta/recipes-support/attr/acl_2.2.52.bb
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2017-04-18 01:33:20 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-04-19 10:16:22 +0100
commit73d3d81fcdb92dd85c6ad1609e3a6eb20f1ea539 (patch)
tree7ce0520bd4ba71e7442dc7ea4de4ed2b193e4a7f /meta/recipes-support/attr/acl_2.2.52.bb
parenta7761023696fbefb0d38906b0b02bf4ed211b3fb (diff)
downloadopenembedded-core-73d3d81fcdb92dd85c6ad1609e3a6eb20f1ea539.tar.gz
openembedded-core-73d3d81fcdb92dd85c6ad1609e3a6eb20f1ea539.tar.bz2
openembedded-core-73d3d81fcdb92dd85c6ad1609e3a6eb20f1ea539.zip
acl: fix race issue when do_compile
Fixed race issue: In file included from acl_copy_entry.c:22:0: libacl.h:19:21: fatal error: sys/acl.h: No such file or directory #include <sys/acl.h> [snip] compilation terminated. acl_get_file.c:27:24: fatal error: acl/libacl.h: No such file or directory #include <acl/libacl.h> ^ The acl.h is in "include" directory, and include/Makefile creates symlink "sys" and "acl" poinst to current dirctory: $ ls include/ -l acl -> . sys -> . So if "libacl" target runs before "include", the error would happen since no "acl" or "sys" directory. Let libacl depend on include can fix the problem. [YOCTO #11349] Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-support/attr/acl_2.2.52.bb')
-rw-r--r--meta/recipes-support/attr/acl_2.2.52.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-support/attr/acl_2.2.52.bb b/meta/recipes-support/attr/acl_2.2.52.bb
index 9ab5853d53..306c7b5cda 100644
--- a/meta/recipes-support/attr/acl_2.2.52.bb
+++ b/meta/recipes-support/attr/acl_2.2.52.bb
@@ -16,7 +16,9 @@ SRC_URI = "${SAVANNAH_GNU_MIRROR}/acl/${BP}.src.tar.gz \
file://acl-fix-the-order-of-expected-output-of-getfacl.patch \
file://test-fix-insufficient-quoting-of.patch \
file://test-fixups-on-SELinux-machines-for-root-testcases.patch \
- file://test-fix-directory-permissions.patch"
+ file://test-fix-directory-permissions.patch \
+ file://Makefile-libacl-should-depend-on-include.patch \
+"
SRC_URI[md5sum] = "a61415312426e9c2212bd7dc7929abda"
SRC_URI[sha256sum] = "179074bb0580c06c4b4137be4c5a92a701583277967acdb5546043c7874e0d23"