mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 22:05:58 +00:00
autogen.sh: don't run ./configure if autoreconf failed
The following line could be seen in the middle of the log: autoreconf: automake failed with exit status: 1 Clearly the configuration phase should not continue from there.
This commit is contained in:
parent
f4181f0223
commit
f9f7cbe93e
1 changed files with 1 additions and 1 deletions
|
@ -4,5 +4,5 @@ if [ $? -ne 0 ] ; then
|
|||
echo "Please install autoconf" && exit 1;
|
||||
fi
|
||||
mkdir -p m4
|
||||
autoreconf -i --force --warnings=none -I . -I m4
|
||||
autoreconf -i --force --warnings=none -I . -I m4 && \
|
||||
./configure --enable-maintainer-mode $*
|
||||
|
|
Loading…
Reference in a new issue