commandrunner: fix bad-continuation

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
pull/161/head
Igor Gnatenko 10 years ago
parent 93d15e4152
commit 74b0fad8f1
  1. 2
      commandrunner.py

@ -23,7 +23,7 @@ def run_command(source_dir, build_dir, subdir, command, arguments):
env = {'MESON_SOURCE_ROOT' : source_dir, env = {'MESON_SOURCE_ROOT' : source_dir,
'MESON_BUILD_ROOT' : build_dir, 'MESON_BUILD_ROOT' : build_dir,
'MESON_SUBDIR' : subdir 'MESON_SUBDIR' : subdir
} }
cwd = os.path.join(source_dir, subdir) cwd = os.path.join(source_dir, subdir)
child_env = os.environ.copy() child_env = os.environ.copy()
child_env.update(env) child_env.update(env)

Loading…
Cancel
Save