mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 05:28:48 +00:00
autogen.sh: advice about installing autoconf if autoreconf not found
This commit is contained in:
parent
07f09dd3da
commit
f4181f0223
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
#!/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 $*
|
||||
|
|
Loading…
Reference in a new issue