mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-25 03:30:07 +01:00
autogen.sh: fail cleanly if autoconf fails
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
(cherry picked from commit 0bbfca6def)
This commit is contained in:
parent
0ffa8fd4e8
commit
0cfe2cfb4e
1 changed files with 4 additions and 1 deletions
|
|
@ -81,7 +81,10 @@ $ACLOCAL -I m4 $ACLOCAL_FLAGS
|
|||
(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader
|
||||
|
||||
$AUTOMAKE -a $am_opt
|
||||
autoconf || echo "autoconf failed - version 2.5x is probably required"
|
||||
if ! autoconf; then
|
||||
echo "autoconf failed - version 2.5x is probably required" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd $ORIGDIR
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue