external-toolchain-cross.bbclass: add debug output

Signed-off-by: Christopher Larson <kergoth@gmail.com>
This commit is contained in:
Christopher Larson
2021-04-01 11:23:39 -07:00
parent d158f72d6a
commit cd6b55cf65

View File

@@ -18,9 +18,11 @@ do_install () {
install -d ${D}${bindir}
for bin in ${EXTERNAL_CROSS_BINARIES}; do
if [ ! -e "${EXTERNAL_TOOLCHAIN_BIN}/${EXTERNAL_TARGET_SYS}-$bin" ]; then
bbdebug 1 "${EXTERNAL_TOOLCHAIN_BIN}/${EXTERNAL_TARGET_SYS}-$bin does not exist"
continue
fi
bbdebug 1 wrap_bin "$bin"
wrap_bin "$bin"
done
}