]> code.ossystems Code Review - openembedded-core.git/commit
classes/archiver: run do_unpack_and_patch after do_preconfigure
authorJoshua Watt <JPEWhacker@gmail.com>
Wed, 1 Jul 2020 02:49:23 +0000 (21:49 -0500)
committerSteve Sakoman <steve@sakoman.com>
Sat, 11 Jul 2020 03:11:12 +0000 (17:11 -1000)
commitb6d4176f82b9728af91a4b982ca25fbbee5f9890
treefe8d989d892797c7802f7c3c6d1565fecad9d0ec
parentdf4bfb154e7fce9645f5738aa04b3eb3ef5093fe
classes/archiver: run do_unpack_and_patch after do_preconfigure

The commit 8a7c779487 ("classes/archiver: Create patched archive before
configuring") fixed a race condition when using the archiver, but
introduced a bug where the GCC source would occasionally be deleted due
to the archiving code running before do_preconfigure. Instead, make sure
the archiving code runs after do_preconfigure by making
do_unpack_and_patch depend on it. This makes more sense anyway since
do_preconfigure is effectively an extension of do_patch.

This fixes errors like:

 cat: .../gcc/defaults.h: No such file or directory

when making certain configuration changes

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d4be264061023ae0ea6e023d82a7b99605bfc22c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
meta/classes/archiver.bbclass