aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2015-01-07 20:19:56 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2015-01-07 20:19:56 +0000
commit2ecd2941edc8d07090b6b4aeaae7bc4c9c333066 (patch)
tree4d5dc13bf51ed093da665fd6ca50f5b1ce340d82
parentb7a4ecc1535e4e154b2ca5da16afecc096e152e8 (diff)
downloadbitcoin-2ecd2941edc8d07090b6b4aeaae7bc4c9c333066.tar.xz
Bugfix: configure: Correctly detect "nothing to build" condition
-rw-r--r--configure.ac2
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