Jon Murphy has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/86148?usp=email )
Change subject: util/crossgcc: Add missing printf variable ......................................................................
util/crossgcc: Add missing printf variable
Add the printing of the missing libstdcxx path in the warning string when the path check fails.
BUG=None TEST=Build with invalid libstdcxx path
Change-Id: I195718e43ea842970f5fa986315c9e9f11395362 Signed-off-by: Jon Murphy jpmurphy@google.com --- M util/crossgcc/buildgcc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/86148/1
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 2d112eb..109bcef 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -858,7 +858,7 @@ build_LIBSTDCXX() { if [ ! -e ${LIBSTDCXX_INCLUDE_PATH} ]; then touch .failed - printf "libstdcxx include path "%s" does not exist" + printf "libstdcxx include path "%s" does not exist" ${LIBSTDCXX_INCLUDE_PATH} return fi configure_GCC \