Replace a couple more Qt 5 references

This commit is contained in:
Kovid Goyal 2021-11-21 12:28:13 +05:30
parent e3d0259d70
commit 13867e75fc
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ elif iswindows:
dlls += ['WinExtras']
QT_DLLS = frozenset(
'Qt5' + x for x in dlls
'Qt6' + x for x in dlls
)
QT_PLUGINS = [

View File

@ -17,7 +17,7 @@ is_ci = os.environ.get('CI', '').lower() == 'true'
def qt_sources():
qtdir = os.environ.get('QT_SRC', '/usr/src/qt5/qtbase')
qtdir = os.environ.get('QT_SRC', '/usr/src/qt6/qtbase')
j = partial(os.path.join, qtdir)
return list(map(j, [
'src/gui/kernel/qplatformtheme.cpp',