Skip to content

Commit

Permalink
configure: do not prefer qmake6 over qmake
Browse files Browse the repository at this point in the history
See also previous commit - if Qt6 is installed in macOS, _qmake6_ is
linked to _/usr/local/bin_.
  • Loading branch information
MartinPulec committed Aug 21, 2023
1 parent 47b1abf commit 18c55c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2705,7 +2705,7 @@ if test "$qt_req" != no; then

#AC_MSG_NOTICE("Qmake: $QMAKE")
if test "x$QMAKE" = "x"; then
AC_PATH_PROGS(QMAKE, [qmake6 qmake-qt5 qmake], [:], [/usr/lib/qt5/bin:$PATH])
AC_PATH_PROGS(QMAKE, [qmake qmake6 qmake-qt5], [:], [/usr/lib/qt5/bin:$PATH])
fi

if test "$QMAKE" -a "$QMAKE" != ":"
Expand Down

0 comments on commit 18c55c1

Please sign in to comment.