diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-11-20 23:56:53 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-11-22 16:28:13 -0500 |
commit | 5163a02fec8836a55952353fb598ac6ced3b6a3c (patch) | |
tree | 9f4350136b980a6487b7d588d9c906ff52acfdcb /mesonbuild/modules/qt.py | |
parent | 1c2461f5c7687f63bb02dd306889480d36e97b3c (diff) | |
download | meson-5163a02fec8836a55952353fb598ac6ced3b6a3c.zip meson-5163a02fec8836a55952353fb598ac6ced3b6a3c.tar.gz meson-5163a02fec8836a55952353fb598ac6ced3b6a3c.tar.bz2 |
qt module: fix stupid copy-paste error
As evidenced by the warning message immediately below this, I meant to
write "5.15" here. As is, this will enable depfile support on too-old
versions of moc.
Diffstat (limited to 'mesonbuild/modules/qt.py')
-rw-r--r-- | mesonbuild/modules/qt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/qt.py b/mesonbuild/modules/qt.py index f874c58..9360e4a 100644 --- a/mesonbuild/modules/qt.py +++ b/mesonbuild/modules/qt.py @@ -170,7 +170,7 @@ class QtBaseModule(ExtensionModule): if qt.found(): # Get all tools and then make sure that they are the right version self.compilers_detect(state, qt) - if version_compare(qt.version, '>=5.14.0'): + if version_compare(qt.version, '>=5.15.0'): self._moc_supports_depfiles = True else: mlog.warning('moc dependencies will not work properly until you move to Qt >= 5.15', fatal=False) |