diff options
| author | Luke Dashjr <[email protected]> | 2015-01-07 20:19:56 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2015-01-07 20:19:56 +0000 |
| commit | 2ecd2941edc8d07090b6b4aeaae7bc4c9c333066 (patch) | |
| tree | 4d5dc13bf51ed093da665fd6ca50f5b1ce340d82 | |
| parent | Bugfix: Only check for boost when building code that requires it (diff) | |
| download | discoin-2ecd2941edc8d07090b6b4aeaae7bc4c9c333066.tar.xz discoin-2ecd2941edc8d07090b6b4aeaae7bc4c9c333066.zip | |
Bugfix: configure: Correctly detect "nothing to build" condition
| -rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 740f7e8e0..173c93c53 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 |