diff options
author | Matthias Schiffer <matthias.schiffer@ew.tq-group.com> | 2018-11-06 09:56:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-09 15:27:34 +0000 |
commit | f4de5d85b8929d56136fce1d6cb9b9b51e8172b4 (patch) | |
tree | 8d564498a8302f6b4a1264fb35668cd5dfa27950 /scripts/bitbake-prserv-tool | |
parent | b9feb4e46b8a45910ba7002a431b137454f05909 (diff) | |
download | poky-f4de5d85b8929d56136fce1d6cb9b9b51e8172b4.tar.gz |
base.bbclass: avoid 'find -ignore_readdir_race -delete'
Due to a bug in find [1], -ignore_readdir_race does not work correctly with
-delete. This can lead to spurious build failures when files disappear
while such a command is running; specifically this was seen in the case of
do_configure and do_populate_lic running concurrently for packages
with ${B} == ${WORKDIR}:
find: '.../sstate-build-populate_lic': No such file or directory
While the issue is fixed in the findutils git master, the find command of
the host system is called here, so we can't ensure that the used version
contains the fix. Many common distros have not updated to a recent enough
findutils version yet (Ubuntu 18.10 contains the fix, while 18.04 is still
affected).
Work around the issue by passing the output of find to 'rm -f' instead of
using -delete.
[1] https://savannah.gnu.org/bugs/?52981
(From OE-Core rev: 8079e2d62e23f7c274f46185e6dad64fa95394c1)
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/bitbake-prserv-tool')
0 files changed, 0 insertions, 0 deletions