mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
libmodule-build-perl: make it reproducible
Particularly, delete html docs as they have sysroot paths in them, and adjust build configuration to not refer to host paths either. (From OE-Core rev: 7f58aed9d7b07d9f86717fc0c45b31b1887eb36a) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ebc39a1856
commit
177c9b49b8
@@ -33,13 +33,26 @@ do_patch_module_build () {
|
||||
|
||||
do_patch[postfuncs] += "do_patch_module_build"
|
||||
|
||||
EXTRA_CPAN_BUILD_FLAGS = "--create_packlist=0"
|
||||
|
||||
do_install_append () {
|
||||
rm -rf ${D}${docdir}/perl/html
|
||||
}
|
||||
|
||||
do_install_ptest() {
|
||||
cp -r ${B}/inc ${D}${PTEST_PATH}
|
||||
cp -r ${B}/blib ${D}${PTEST_PATH}
|
||||
cp -r ${B}/_build ${D}${PTEST_PATH}
|
||||
cp -r ${B}/lib ${D}${PTEST_PATH}
|
||||
chown -R root:root ${D}${PTEST_PATH}
|
||||
sed -i -e "s,'perl' => .*,'perl' => '/usr/bin/perl'\,,g" ${D}${PTEST_PATH}/_build/build_params
|
||||
sed -i -e "s,'perl' => .*,'perl' => '/usr/bin/perl'\,,g" \
|
||||
-e "s,${STAGING_BINDIR_NATIVE}/perl-native/\.\.,${bindir}/,g" \
|
||||
-e "s,${S},,g" \
|
||||
-e "s,${D},,g" \
|
||||
${D}${PTEST_PATH}/_build/build_params \
|
||||
${D}${PTEST_PATH}/_build/runtime_params
|
||||
rm -rf ${D}${PTEST_PATH}/blib/libhtml/site/lib/Module/
|
||||
rm -rf ${D}${PTEST_PATH}/_build/magicnum
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += " \
|
||||
|
||||
Reference in New Issue
Block a user