diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2015-06-19 10:28:41 +0300 |
---|---|---|
committer | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2015-06-19 10:48:51 +0300 |
commit | 74b0fad8f11455f79c142baf95fa0ebb8ce86c62 (patch) | |
tree | edf143c5dd1dde1008b4e42218bef09c857e2efe | |
parent | 93d15e4152cbac9ed8ef65ec1d301e9318ad2e2c (diff) | |
download | meson-74b0fad8f11455f79c142baf95fa0ebb8ce86c62.zip meson-74b0fad8f11455f79c142baf95fa0ebb8ce86c62.tar.gz meson-74b0fad8f11455f79c142baf95fa0ebb8ce86c62.tar.bz2 |
commandrunner: fix bad-continuation
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
-rwxr-xr-x | commandrunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commandrunner.py b/commandrunner.py index 8530bb4..1d5defb 100755 --- a/commandrunner.py +++ b/commandrunner.py @@ -23,7 +23,7 @@ def run_command(source_dir, build_dir, subdir, command, arguments): env = {'MESON_SOURCE_ROOT' : source_dir, 'MESON_BUILD_ROOT' : build_dir, 'MESON_SUBDIR' : subdir - } + } cwd = os.path.join(source_dir, subdir) child_env = os.environ.copy() child_env.update(env) |