mirror of
https://git.yoctoproject.org/poky
synced 2026-03-17 04:39:40 +01:00
libseccomp: Fix reproducibility issue
Rather than installing libtool wrapper scripts which won't work on target and aren't reproducible, use the real binaries. (From OE-Core rev: 8afdf055b7b8bad6f0f13c3cd184d019c50a1e25) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -42,6 +42,10 @@ do_install_ptest() {
|
||||
for file in $(find tools/* -executable -type f); do
|
||||
install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools
|
||||
done
|
||||
# Overwrite libtool wrappers with real executables
|
||||
for file in $(find tools/.libs/* -executable -type f); do
|
||||
install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools
|
||||
done
|
||||
}
|
||||
|
||||
FILES_${PN} = "${bindir} ${libdir}/${BPN}.so*"
|
||||
|
||||
Reference in New Issue
Block a user