summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-09-26 11:41:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-26 17:00:05 +0100
commit601e1a740b6909ea904a554e0e0c35056fd2231c (patch)
treebc9d57949dc877e2f193ac76913d62ff3298b150 /meta/recipes-devtools
parent68ec3d49259bc6721d6c8e0eac4ef93889387e7c (diff)
downloadpoky-601e1a740b6909ea904a554e0e0c35056fd2231c.tar.gz
pseudo: use bbnote/bbwarn instead of echo
In the future bbnote/bbwarn will be integrated into bitbake's logging, so use those functions instead of echo directly. (From OE-Core rev: 4933d7ae45d88090191c8ea07fd109ed34925e2d) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/pseudo/pseudo.inc12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-devtools/pseudo/pseudo.inc b/meta/recipes-devtools/pseudo/pseudo.inc
index a4b7aaf072..a287629e52 100644
--- a/meta/recipes-devtools/pseudo/pseudo.inc
+++ b/meta/recipes-devtools/pseudo/pseudo.inc
@@ -56,15 +56,15 @@ maybe_make32() {
56 fi 56 fi
57 if $make32; then 57 if $make32; then
58 if ! [ -e "/usr/include/gnu/stubs-32.h" ]; then 58 if ! [ -e "/usr/include/gnu/stubs-32.h" ]; then
59 echo >&2 "WARNING: Can't find stubs-32.h, but usually need it to build 32-bit libpseudo." 59 bbwarn "Can't find stubs-32.h, but usually need it to build 32-bit libpseudo."
60 echo >&2 "If the build fails, install 32-bit developer packages." 60 bbwarn "If the build fails, install 32-bit developer packages."
61 echo >&2 "If you are using 32-bit binaries, the 32-bit libpseudo is NOT optional." 61 bbwarn "If you are using 32-bit binaries, the 32-bit libpseudo is NOT optional."
62 else 62 else
63 echo "Attempting to build 32-bit libpseudo.so for ${PN}." 63 bbnote "Attempting to build 32-bit libpseudo.so for ${PN}."
64 fi 64 fi
65 else 65 else
66 echo "Building/installing only 64-bit libpseudo.so for ${PN}." 66 bbnote "Building/installing only 64-bit libpseudo.so for ${PN}."
67 echo "If you need to run 32-bit executables, ensure that NO32LIBS is set to 0." 67 bbnote "If you need to run 32-bit executables, ensure that NO32LIBS is set to 0."
68 fi 68 fi
69} 69}
70 70