[oe-commits] [openembedded-core] 01/18: perl: improve reproducibility

git at git.openembedded.org git at git.openembedded.org
Sat Jan 11 09:19:51 UTC 2020


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 7e0f6c9ea4f824f29dc30c6631fd8039ebe83a0b
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Fri Jan 10 17:24:21 2020 +0000

    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 ]
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/perl/perl_5.30.1.bb | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/meta/recipes-devtools/perl/perl_5.30.1.bb b/meta/recipes-devtools/perl/perl_5.30.1.bb
index 66707e7..03e7f20 100644
--- a/meta/recipes-devtools/perl/perl_5.30.1.bb
+++ b/meta/recipes-devtools/perl/perl_5.30.1.bb
@@ -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() {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list