diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-05-23 18:49:19 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-05-24 14:38:28 +0000 |
commit | a6c9f98c57e8f42517d41d4c46ccf40163b6e7c6 (patch) | |
tree | 1d691e801148ab32f468429a90c61cb1c02372f8 /mesonbuild/environment.py | |
parent | ecbeae565b1597f91f37513c258c077b1f54ad21 (diff) | |
download | meson-a6c9f98c57e8f42517d41d4c46ccf40163b6e7c6.zip meson-a6c9f98c57e8f42517d41d4c46ccf40163b6e7c6.tar.gz meson-a6c9f98c57e8f42517d41d4c46ccf40163b6e7c6.tar.bz2 |
depfixer: We no longer run this as a script
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 045be82..fc837d6 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -652,10 +652,6 @@ class Environment: def get_scratch_dir(self): return self.scratch_dir - def get_depfixer(self): - path = os.path.dirname(__file__) - return os.path.join(path, 'depfixer.py') - def detect_objc_compiler(self, want_cross): popen_exceptions = {} compilers, ccache, is_cross, exe_wrap = self._get_compilers('objc', 'OBJC', want_cross) |