diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2015-01-07 20:19:56 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2015-01-07 20:19:56 +0000 |
commit | 2ecd2941edc8d07090b6b4aeaae7bc4c9c333066 (patch) | |
tree | 4d5dc13bf51ed093da665fd6ca50f5b1ce340d82 /configure.ac | |
parent | b7a4ecc1535e4e154b2ca5da16afecc096e152e8 (diff) |
Bugfix: configure: Correctly detect "nothing to build" condition
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 740f7e8e0d..173c93c538 100644 --- a/configure.ac +++ b/configure.ac @@ -839,7 +839,7 @@ else AC_MSG_RESULT([no]) fi -if test x$build_bitcoin_utils$build_bitcoin_libs$build_bitcoind$bitcoin_enable_qt$use_tests = xnononono; then +if test x$build_bitcoin_utils$build_bitcoin_libs$build_bitcoind$bitcoin_enable_qt$use_tests = xnonononono; then AC_MSG_ERROR([No targets! Please specify at least one of: --with-utils --with-libs --with-daemon --with-gui or --enable-tests]) fi |