gstreamer/autogen.sh
Andres G. Aragoneses f9f7cbe93e 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.
2014-04-01 02:20:10 +02:00

9 lines
221 B
Bash
Executable file

#!/bin/sh
which autoreconf > /dev/null
if [ $? -ne 0 ] ; then
echo "Please install autoconf" && exit 1;
fi
mkdir -p m4
autoreconf -i --force --warnings=none -I . -I m4 && \
./configure --enable-maintainer-mode $*