diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-08-13 15:11:01 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-08-13 15:13:02 +0200 |
| commit | fe1780ed3ecabc1d61b420d1ac6d56f575181ae6 (patch) | |
| tree | 55e99e7feb3edde279ea29899d63c4b92ad45b55 | |
| parent | Merge #8503: [doc] typos, text errors (diff) | |
| parent | configure: Allow building bench_bitcoin by itself (diff) | |
| download | discoin-fe1780ed3ecabc1d61b420d1ac6d56f575181ae6.tar.xz discoin-fe1780ed3ecabc1d61b420d1ac6d56f575181ae6.zip | |
Merge #8492: configure: Allow building bench_bitcoin by itself
216d796 configure: Allow building bench_bitcoin by itself (Luke Dashjr)
| -rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index ef58cfc40..b94218f3e 100644 --- a/configure.ac +++ b/configure.ac @@ -1012,8 +1012,8 @@ else AC_MSG_RESULT([no]) fi -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]) +if test x$build_bitcoin_utils$build_bitcoin_libs$build_bitcoind$bitcoin_enable_qt$use_bench$use_tests = xnononononono; then + AC_MSG_ERROR([No targets! Please specify at least one of: --with-utils --with-libs --with-daemon --with-gui --enable-bench or --enable-tests]) fi AM_CONDITIONAL([TARGET_DARWIN], [test x$TARGET_OS = xdarwin]) |