diff options
| author | Robert Yang <liezhi.yang@windriver.com> | 2017-04-18 01:33:20 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-19 10:18:43 +0100 |
| commit | f81c0de90564a7172bcd206b93abd55bba96b0dc (patch) | |
| tree | 70e928e1ef3c75d53d19f8dc3b6c325118dd55e4 /meta/recipes-support/attr/acl | |
| parent | 567329b56689f3cb9f2649cb52734f093eb85eac (diff) | |
| download | poky-f81c0de90564a7172bcd206b93abd55bba96b0dc.tar.gz | |
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]
(From OE-Core rev: 73d3d81fcdb92dd85c6ad1609e3a6eb20f1ea539)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/attr/acl')
| -rw-r--r-- | meta/recipes-support/attr/acl/Makefile-libacl-should-depend-on-include.patch | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-support/attr/acl/Makefile-libacl-should-depend-on-include.patch b/meta/recipes-support/attr/acl/Makefile-libacl-should-depend-on-include.patch new file mode 100644 index 0000000000..4c7cba3b88 --- /dev/null +++ b/meta/recipes-support/attr/acl/Makefile-libacl-should-depend-on-include.patch | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | From d82457ce5ca7455e336da5e244d95f90e52aaef8 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Robert Yang <liezhi.yang@windriver.com> | ||
| 3 | Date: Tue, 18 Apr 2017 01:17:26 -0700 | ||
| 4 | Subject: [PATCH] Makefile: libacl should depend on include | ||
| 5 | |||
| 6 | Fixed race issue: | ||
| 7 | In file included from acl_copy_entry.c:22:0: | ||
| 8 | libacl.h:19:21: fatal error: sys/acl.h: No such file or directory | ||
| 9 | #include <sys/acl.h> | ||
| 10 | |||
| 11 | [snip] | ||
| 12 | |||
| 13 | compilation terminated. | ||
| 14 | acl_get_file.c:27:24: fatal error: acl/libacl.h: No such file or directory | ||
| 15 | #include <acl/libacl.h> | ||
| 16 | ^ | ||
| 17 | |||
| 18 | The acl.h is in "include" directory, and include/Makefile creates | ||
| 19 | symlink "sys" and "acl" poinst to current dirctory: | ||
| 20 | $ ls include/ -l | ||
| 21 | acl -> . | ||
| 22 | sys -> . | ||
| 23 | |||
| 24 | So if "libacl" target runs before "include", the error would happen | ||
| 25 | since no "acl" or "sys" directory. | ||
| 26 | |||
| 27 | Let libacl depend on include can fix the problem. | ||
| 28 | |||
| 29 | Upstream-Status: Pending | ||
| 30 | |||
| 31 | Signed-off-by: Robert Yang <liezhi.yang@windriver.com> | ||
| 32 | --- | ||
| 33 | Makefile | 2 +- | ||
| 34 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 35 | |||
| 36 | diff --git a/Makefile b/Makefile | ||
| 37 | index dce32d3..8a79379 100644 | ||
| 38 | --- a/Makefile | ||
| 39 | +++ b/Makefile | ||
| 40 | @@ -48,7 +48,7 @@ else | ||
| 41 | endif | ||
| 42 | |||
| 43 | # tool/lib dependencies | ||
| 44 | -libacl: libmisc | ||
| 45 | +libacl: include libmisc | ||
| 46 | getfacl setfacl chacl: libacl | ||
| 47 | |||
| 48 | ifeq ($(HAVE_BUILDDEFS), yes) | ||
| 49 | -- | ||
| 50 | 2.10.2 | ||
| 51 | |||
