diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-02 20:37:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-02 20:37:59 +0300 |
commit | 1c44afdeed636f90a1e2685cba4143eacde21887 (patch) | |
tree | fae2555335f85911e811a719fc125b4ff1de9b03 /mesonbuild/mesonlib.py | |
parent | 1ec3c790567d230e994500a6edb44a26c2d64968 (diff) | |
parent | cc58fdac33fad6f9af328b2bdc26fcd5c0274b84 (diff) | |
download | meson-1c44afdeed636f90a1e2685cba4143eacde21887.zip meson-1c44afdeed636f90a1e2685cba4143eacde21887.tar.gz meson-1c44afdeed636f90a1e2685cba4143eacde21887.tar.bz2 |
Merge pull request #3823 from mesonbuild/nirbheek/fix-featurenew-subprojects
Nirbheek/fix featurenew subprojects
Diffstat (limited to 'mesonbuild/mesonlib.py')
-rw-r--r-- | mesonbuild/mesonlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py index c122589..5f9b98a 100644 --- a/mesonbuild/mesonlib.py +++ b/mesonbuild/mesonlib.py @@ -23,8 +23,8 @@ from mesonbuild import mlog have_fcntl = False have_msvcrt = False -# Used to report conflicts between meson_version and new features used -target_version = '' +# {subproject: project_meson_version} +project_meson_versions = {} try: import fcntl |