diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-02-15 12:53:33 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-02-15 12:53:42 +0100 |
| commit | 9b9bfcec5af87ebbeb25caa3067eb764739844a1 (patch) | |
| tree | 3ff04d5962ce67aefc1dad8bbbd24eb35c55ceef | |
| parent | Merge #7527: [Trivial, RPC] Fix and cleanup listreceivedbyX documentation (diff) | |
| parent | autogen.sh: warn about needing autoconf if autoreconf is not found (diff) | |
| download | discoin-9b9bfcec5af87ebbeb25caa3067eb764739844a1.tar.xz discoin-9b9bfcec5af87ebbeb25caa3067eb764739844a1.zip | |
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 3e26a1830..46e36ff5b 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 |