Permalink
Browse files

Remove spurious dollar sign. Fixes #7189.

Github-Pull: #7189
Rebased-From: 3d19193
  • Loading branch information...
1 parent 64fd0ce commit 1c3d38bde7be181a87c7c73e26c079e285a6fe96 @dooglus dooglus committed with MarcoFalke Feb 26, 2016
Showing with 1 addition and 1 deletion.
  1. +1 −1 build-aux/m4/bitcoin_qt.m4
@@ -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.
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])
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])

0 comments on commit 1c3d38b

Please sign in to comment.