diff options
author | David Robillard <d@drobilla.net> | 2019-03-17 17:31:04 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-17 18:14:27 +0100 |
commit | 6547441f898cc55923878022960c79f33959c7b3 (patch) | |
tree | c1c4f72dd5ca4e9b5a833e386c96d79683f5eefd /waflib/Configure.py | |
parent | 556bb105e3877b9fa59f5829404386c02d146611 (diff) | |
parent | 388292beaecc981066c28359ab588b5056c9158a (diff) | |
download | fomp.lv2-master.tar.gz fomp.lv2-master.tar.bz2 fomp.lv2-master.zip |
Diffstat (limited to 'waflib/Configure.py')
-rw-r--r-- | waflib/Configure.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/waflib/Configure.py b/waflib/Configure.py index d0a4793..db09c0e 100644 --- a/waflib/Configure.py +++ b/waflib/Configure.py @@ -125,7 +125,7 @@ class ConfigurationContext(Context.Context): self.bldnode.mkdir() if not os.path.isdir(self.bldnode.abspath()): - conf.fatal('Could not create the build directory %s' % self.bldnode.abspath()) + self.fatal('Could not create the build directory %s' % self.bldnode.abspath()) def execute(self): """ @@ -180,6 +180,7 @@ class ConfigurationContext(Context.Context): env.hash = self.hash env.files = self.files env.environ = dict(self.environ) + env.launch_dir = Context.launch_dir if not (self.env.NO_LOCK_IN_RUN or env.environ.get('NO_LOCK_IN_RUN') or getattr(Options.options, 'no_lock_in_run')): env.store(os.path.join(Context.run_dir, Options.lockfile)) |