Skip to content

Commit

Permalink
configure: Fix qmake paths
Browse files Browse the repository at this point in the history
- returned paths are always absolute
  • Loading branch information
mark-kendall committed Feb 6, 2020
1 parent 518194a commit eb842fa
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions mythtv/configure
Expand Up @@ -6436,12 +6436,9 @@ if test $target_os = mingw32 ; then
elif test $target_os = darwin ; then
qt_inc="-I`cd $(${qmake} -query QT_INSTALL_HEADERS); pwd` -F`cd $(${qmake} -query QT_INSTALL_LIBS); pwd`"
qt_libs="-L`cd $(${qmake} -query QT_INSTALL_LIBS) ; pwd`"
elif test $target_os = android ; then
else
qt_inc="-I$(${qmake} -query QT_INSTALL_HEADERS)"
qt_libs="-L$(${qmake} -query QT_INSTALL_LIBS)"
else
qt_inc="-I${sysroot}/$(${qmake} -query QT_INSTALL_HEADERS)"
qt_libs="-L${sysroot}/$(${qmake} -query QT_INSTALL_LIBS)"
fi

qt_compiler_check() {
Expand Down

0 comments on commit eb842fa

Please sign in to comment.