mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 12:15:19 +00:00
We should fix build errors as they happen and not find out about them when it is too late
Original commit message from CVS: We should fix build errors as they happen and not find out about them when it is too late
This commit is contained in:
parent
feefad212e
commit
95897bf9dd
1 changed files with 7 additions and 6 deletions
13
autogen.sh
13
autogen.sh
|
@ -112,16 +112,17 @@ if test -z "$*"; then
|
||||||
echo "to pass any to it, please specify them on the $0 command line."
|
echo "to pass any to it, please specify them on the $0 command line."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# FIXME : why does libtoolize keep complaining about aclocal ?
|
|
||||||
echo "+ running libtoolize ..."
|
|
||||||
libtoolize --copy --force
|
|
||||||
|
|
||||||
echo "+ running aclocal ..."
|
echo "+ running aclocal ..."
|
||||||
aclocal $ACLOCAL_FLAGS || {
|
aclocal $ACLOCAL_FLAGS || {
|
||||||
echo
|
echo
|
||||||
echo "aclocal failed - check that all needed development files are present on system"
|
echo "aclocal failed - check that all needed development files are present on system"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# FIXME : why does libtoolize keep complaining about aclocal ?
|
||||||
|
echo "+ running libtoolize ..."
|
||||||
|
libtoolize --copy --force
|
||||||
|
|
||||||
echo "+ running autoheader ... "
|
echo "+ running autoheader ... "
|
||||||
autoheader || {
|
autoheader || {
|
||||||
echo
|
echo
|
||||||
|
@ -132,13 +133,13 @@ echo "+ running autoconf ... "
|
||||||
autoconf || {
|
autoconf || {
|
||||||
echo
|
echo
|
||||||
echo "autoconf failed"
|
echo "autoconf failed"
|
||||||
#exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
echo "+ running automake ... "
|
echo "+ running automake ... "
|
||||||
automake -a -c || {
|
automake -a -c || {
|
||||||
echo
|
echo
|
||||||
echo "automake failed"
|
echo "automake failed"
|
||||||
#exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
# now remove the cache, because it can be considered dangerous in this case
|
# now remove the cache, because it can be considered dangerous in this case
|
||||||
|
|
Loading…
Reference in a new issue