diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-02-03 17:51:05 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-02-03 17:51:05 +0200 |
commit | aee4b52498033fb3127c53924e2a7c103d8e696a (patch) | |
tree | 9b78296da193e736a33361ed2806e3c3b978c6ff /environment.py | |
parent | eae83aea613d919b8dfc2fb907db5420a321b049 (diff) | |
download | meson-aee4b52498033fb3127c53924e2a7c103d8e696a.zip meson-aee4b52498033fb3127c53924e2a7c103d8e696a.tar.gz meson-aee4b52498033fb3127c53924e2a7c103d8e696a.tar.bz2 |
Remove references to build directory when installing.
Diffstat (limited to 'environment.py')
-rwxr-xr-x | environment.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/environment.py b/environment.py index 9938235..fdf0627 100755 --- a/environment.py +++ b/environment.py @@ -201,6 +201,10 @@ class Environment(): def get_scratch_dir(self): return self.scratch_dir + def get_depfixer(self): + path = os.path.split(__file__)[0] + return os.path.join(path, 'depfixer.py') + def detect_cxx_compiler(self): exelist = self.get_cxx_compiler_exelist() p = subprocess.Popen(exelist + ['--version'], stdout=subprocess.PIPE) |