mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 12:32:15 +02:00
perl: improve reproducibility
Occasionally the reproducibility selftest fails because perl-pod differs, specifically that the perltoc.pod file was sometimes missing modules. Debugging revealed that there are missing dependencies so there is a build race: building perltoc.pod from an clean build tree results in no modules being listed at all. A bug has been filed at https://github.com/arsv/perl-cross/issues/86 to solve this properly, but for now we can just delete perltoc.pod after make has finished and re-generate it. [ YOCTO #13726 ] (From OE-Core rev: 4ee9c60797e95674ae138245b3a4de063b2e95db) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 7e0f6c9ea4f824f29dc30c6631fd8039ebe83a0b) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
5b84102650
commit
74bec4855b
@@ -112,6 +112,14 @@ print(datetime.fromtimestamp($SOURCE_DATE_EPOCH, timezone.utc).strftime('%a %b %
|
||||
|
||||
do_compile() {
|
||||
oe_runmake
|
||||
# This isn't generated reliably so delete and re-generate.
|
||||
# https://github.com/arsv/perl-cross/issues/86
|
||||
|
||||
if [ -e pod/perltoc.pod ]; then
|
||||
bbnote Rebuilding perltoc.pod
|
||||
rm -f pod/perltoc.pod
|
||||
oe_runmake pod/perltoc.pod
|
||||
fi
|
||||
}
|
||||
|
||||
do_install() {
|
||||
|
||||
Reference in New Issue
Block a user