Remove spurious dollar sign. Fixes #7189.
This commit is contained in:
parent
9de541a9c9
commit
3d19193f14
1 changed files with 1 additions and 1 deletions
|
@ -384,7 +384,7 @@ AC_DEFUN([_BITCOIN_QT_FIND_LIBS_WITH_PKGCONFIG],[
|
||||||
|
|
||||||
dnl qt version is set to 'auto' and the preferred version wasn't found. Now try the other.
|
dnl qt version is set to 'auto' and the preferred version wasn't found. Now try the other.
|
||||||
if test x$have_qt = xno && test x$bitcoin_qt_want_version = xauto; then
|
if test x$have_qt = xno && test x$bitcoin_qt_want_version = xauto; then
|
||||||
if test x$auto_priority_version = x$qt5; then
|
if test x$auto_priority_version = xqt5; then
|
||||||
PKG_CHECK_MODULES([QT], [$qt4_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt; bitcoin_qt_got_major_vers=4], [have_qt=no])
|
PKG_CHECK_MODULES([QT], [$qt4_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt; bitcoin_qt_got_major_vers=4], [have_qt=no])
|
||||||
else
|
else
|
||||||
PKG_CHECK_MODULES([QT], [$qt5_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt5; bitcoin_qt_got_major_vers=5], [have_qt=no])
|
PKG_CHECK_MODULES([QT], [$qt5_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt5; bitcoin_qt_got_major_vers=5], [have_qt=no])
|
||||||
|
|
Loading…
Reference in a new issue