mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
Use correct operator to compare strings in configure script
To compare strings, = should be used instead of ==. Closes #2627.
This commit is contained in:
parent
112d4b8c71
commit
6b248492ca
2 changed files with 7 additions and 7 deletions
|
@ -54,7 +54,7 @@ AS_IF([test "x$QT_QMAKE" != "x"],
|
|||
# Sets the HAVE_QTDBUS variable to true or false.
|
||||
# --------------------------------------
|
||||
AC_DEFUN([FIND_QTDBUS],
|
||||
[AS_IF([test "x$with_qt5" == "xyes"],
|
||||
[AS_IF([test "x$with_qt5" = "xyes"],
|
||||
[AC_MSG_CHECKING([for Qt5DBus >= 5.2.0])
|
||||
PKG_CHECK_EXISTS([Qt5DBus >= 5.2.0],
|
||||
[AC_MSG_RESULT([found])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue