diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-23 22:03:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-23 22:03:14 +0200 |
| commit | 4c9c14121fee9f733ab1f731b87a6714338174c6 (patch) | |
| tree | 378eb2fb05d3f19dc57f58b9257b4d48a3cfa907 /mesonbuild/dependencies.py | |
| parent | 8ec9b0a71ffa1043b17a11e594219971c9288600 (diff) | |
| parent | 7d6f628ed4c3c3dca32bef01b2581f2e9bcde189 (diff) | |
| download | meson-4c9c14121fee9f733ab1f731b87a6714338174c6.tar.gz | |
Merge pull request #1302 from centricular/install-mode
Support file perms for install_data and install_subdir
Diffstat (limited to 'mesonbuild/dependencies.py')
| -rw-r--r-- | mesonbuild/dependencies.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/dependencies.py b/mesonbuild/dependencies.py index 32c61c17d..6ae91d456 100644 --- a/mesonbuild/dependencies.py +++ b/mesonbuild/dependencies.py @@ -318,6 +318,7 @@ class WxDependency(Dependency): def __init__(self, environment, kwargs): Dependency.__init__(self, 'wx') self.is_found = False + self.modversion = 'none' if WxDependency.wx_found is None: self.check_wxconfig() if not WxDependency.wx_found: |
