Skip to content

Commit

Permalink
Bugfix: configure: Correctly detect "nothing to build" condition
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr committed Jan 7, 2015
1 parent b7a4ecc commit 2ecd294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2ecd294

Please sign in to comment.