mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
Use die() or bbfatal_log() where the log should definitely be printed
Change calls to bbfatal() to either die() or bbfatal_log() where we know we want the full log to be printed by the UI (calling bberror or bbfatal would otherwise suppress it since the change to connect these functions through to the UI.) bbfatal() is still fine to use where there is enough context information in the message such that the log isn't needed. (From OE-Core rev: 04ed9a19e1b08003329138b8ab83691d13c11fd9) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
757be608a5
commit
ddc1df3e80
@@ -87,7 +87,7 @@ oe_runconf () {
|
||||
if [ "$?" != "0" ]; then
|
||||
echo "Configure failed. The contents of all config.log files follows to aid debugging"
|
||||
find ${S} -ignore_readdir_race -name config.log -print -exec cat {} \;
|
||||
bbfatal "oe_runconf failed"
|
||||
die "oe_runconf failed"
|
||||
fi
|
||||
set -e
|
||||
else
|
||||
@@ -287,7 +287,7 @@ autotools_do_configure() {
|
||||
intltoolize --copy --force --automake
|
||||
fi
|
||||
bbnote Executing ACLOCAL=\"$ACLOCAL\" autoreconf --verbose --install --force ${EXTRA_AUTORECONF} $acpaths
|
||||
ACLOCAL="$ACLOCAL" autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths || bbfatal "autoreconf execution failed."
|
||||
ACLOCAL="$ACLOCAL" autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths || die "autoreconf execution failed."
|
||||
cd $olddir
|
||||
fi
|
||||
if [ -e ${S}/configure ]; then
|
||||
|
||||
Reference in New Issue
Block a user