diff options
author | Jon Layton <me@jonl.io> | 2019-09-30 19:03:16 -0400 |
---|---|---|
committer | Jon Layton <me@jonl.io> | 2019-09-30 19:03:16 -0400 |
commit | 57b0cd4db9ec26d5a00714016639e218cfa1ccda (patch) | |
tree | 274b8a25b704b6761a5f054e23afca2254e59a28 /build-aux/m4 | |
parent | 6b2210f1016c9ed96ce470e588e4cb12fa36a900 (diff) |
build: Installed Qt version only appears if being built
Diffstat (limited to 'build-aux/m4')
-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 675fb6d3fb..d579dc2ed5 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) |