Skip to content

Commit 52acd24

Browse files
committed
Merge #17005: build: Qt version appears only if GUI is being built
57b0cd4 build: Installed Qt version only appears if being built (Jon Layton) Pull request description: Closes #16989. Simplifies `./configure` output for `x$bitcoin_enable_qt`. Now: `checking whether to build Bitcoin Core GUI... no` `checking whether to build Bitcoin Core GUI... yes (Qt5)` ACKs for top commit: laanwj: ACK 57b0cd4 fanquake: ACK 57b0cd4 Tree-SHA512: 3ca2082f251c206bb1661277dac1075acea046f0a1d2cd997550aa83dd886036b7282f0e30cdaf51ed636d8a40d9b7ffb8600743450f4f4c014c541cb7b2eb0d
2 parents cd6e9b3 + 57b0cd4 commit 52acd24

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build-aux/m4/bitcoin_qt.m4

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,11 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
228228
],[
229229
bitcoin_enable_qt=no
230230
])
231-
AC_MSG_RESULT([$bitcoin_enable_qt (Qt5)])
231+
if test x$bitcoin_enable_qt = xyes; then
232+
AC_MSG_RESULT([$bitcoin_enable_qt ($QT_LIB_PREFIX)])
233+
else
234+
AC_MSG_RESULT([$bitcoin_enable_qt])
235+
fi
232236
233237
AC_SUBST(QT_PIE_FLAGS)
234238
AC_SUBST(QT_INCLUDES)

0 commit comments

Comments
 (0)