mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
autogen.sh now fails if aclocal fails.
Original commit message from CVS: autogen.sh now fails if aclocal fails.
This commit is contained in:
parent
5b028b13b5
commit
90b551890f
1 changed files with 4 additions and 1 deletions
|
@ -54,7 +54,10 @@ if test -z "$*"; then
|
|||
fi
|
||||
|
||||
libtoolize --copy --force
|
||||
aclocal $ACLOCAL_FLAGS
|
||||
aclocal $ACLOCAL_FLAGS || {
|
||||
echo "aclocal failed - check that all needed development files are present on system"
|
||||
exit 1
|
||||
}
|
||||
autoheader
|
||||
autoconf
|
||||
automake --add-missing
|
||||
|
|
Loading…
Reference in a new issue