mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Improve detection of Qt6 libs
We would miss the libraries specified by a full path when also '-L' flags are present, as we would only take into account those specified by '-l' flags.
This commit is contained in:
parent
a29ced5577
commit
4d71d3d8a7
@ -454,7 +454,7 @@ EOF2
|
||||
QT_LDFLAGS="-L`$QT_QMAKE -query QT_INSTALL_LIBS`"
|
||||
QT_LIB="$qt_guilibs"
|
||||
else
|
||||
QT_LIB=`echo $qt_guilibs | tr ' ' '\n' | grep -e "^-l" | tr '\n' ' '`
|
||||
QT_LIB=`echo $qt_guilibs | tr ' ' '\n' | grep -v "^-L" | tr '\n' ' '`
|
||||
fi
|
||||
QTLIB_VERSION=`$QT_QMAKE -v | grep "Qt version" | sed -e 's/.*\([[0-9]]\.[[0-9]]*\.[[0-9]]\).*/\1/'`
|
||||
if test -z "$QT_LIB"; then
|
||||
|
Loading…
Reference in New Issue
Block a user