mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 04:03:03 +01:00
libidn2: Fix reproducibility issue
The previous tweak for reproducibility didn't handle the duplicate whitepace left behind, fix this. [YOCTO #13771] (From OE-Core rev: 0392fcbdc85180581ce7392212808ebb822cc2e8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -22,7 +22,8 @@ EXTRA_OECONF += "--disable-rpath \
|
||||
"
|
||||
|
||||
do_install_append() {
|
||||
sed -i -e 's|-L${STAGING_LIBDIR}||' ${D}${libdir}/pkgconfig/libidn2.pc
|
||||
# Need to remove any duplicate whitespace too for reproducibility
|
||||
sed -i -e 's|-L${STAGING_LIBDIR}||' -e 's/ */ /g' ${D}${libdir}/pkgconfig/libidn2.pc
|
||||
}
|
||||
|
||||
LICENSE_${PN} = "(GPLv2+ | LGPLv3)"
|
||||
|
||||
Reference in New Issue
Block a user