diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-02-15 12:53:33 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-02-15 12:53:42 +0100 |
commit | 9b9bfcec5af87ebbeb25caa3067eb764739844a1 (patch) | |
tree | 3ff04d5962ce67aefc1dad8bbbd24eb35c55ceef | |
parent | db2e1c0650c9cbf7ab36a27519399e6b6aa69b3f (diff) | |
parent | 889426d37e331c9e6c914dae824663a7167effdf (diff) |
Merge #7528: autogen.sh: warn about needing autoconf if autoreconf is not found
889426d autogen.sh: warn about needing autoconf if autoreconf is not found (Andrés G. Aragoneses)
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh index 3e26a18305..46e36ff5b2 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,4 +6,6 @@ if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then LIBTOOLIZE="${GLIBTOOLIZE}" export LIBTOOLIZE fi +which autoreconf >/dev/null || \ + (echo "configuration failed, please install autoconf first" && exit 1) autoreconf --install --force --warnings=all |