diff options
| author | Jon Layton <[email protected]> | 2019-09-30 19:03:16 -0400 |
|---|---|---|
| committer | Jon Layton <[email protected]> | 2019-09-30 19:03:16 -0400 |
| commit | 57b0cd4db9ec26d5a00714016639e218cfa1ccda (patch) | |
| tree | 274b8a25b704b6761a5f054e23afca2254e59a28 | |
| parent | Merge #16713: Ignore old versionbit activations to avoid 'unknown softforks' ... (diff) | |
| download | discoin-57b0cd4db9ec26d5a00714016639e218cfa1ccda.tar.xz discoin-57b0cd4db9ec26d5a00714016639e218cfa1ccda.zip | |
build: Installed Qt version only appears if being built
| -rw-r--r-- | build-aux/m4/bitcoin_qt.m4 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build-aux/m4/bitcoin_qt.m4 b/build-aux/m4/bitcoin_qt.m4 index 675fb6d3f..d579dc2ed 100644 --- a/build-aux/m4/bitcoin_qt.m4 +++ b/build-aux/m4/bitcoin_qt.m4 @@ -228,7 +228,11 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[ ],[ bitcoin_enable_qt=no ]) - AC_MSG_RESULT([$bitcoin_enable_qt (Qt5)]) + if test x$bitcoin_enable_qt = xyes; then + AC_MSG_RESULT([$bitcoin_enable_qt ($QT_LIB_PREFIX)]) + else + AC_MSG_RESULT([$bitcoin_enable_qt]) + fi AC_SUBST(QT_PIE_FLAGS) AC_SUBST(QT_INCLUDES) |