Rather than installing libtool wrapper scripts which won't work on target
and aren't reproducible, use the real binaries.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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*"