From b55235dfbde37661d24881eb989ee651ed9289c5 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 31 Dec 2016 14:33:42 +0200 Subject: Fix space before :. --- mesonbuild/scripts/commandrunner.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mesonbuild/scripts/commandrunner.py') diff --git a/mesonbuild/scripts/commandrunner.py b/mesonbuild/scripts/commandrunner.py index 63b5bb1..695301b 100644 --- a/mesonbuild/scripts/commandrunner.py +++ b/mesonbuild/scripts/commandrunner.py @@ -18,9 +18,9 @@ what to run, sets up the environment and executes the command.""" import sys, os, subprocess, shutil def run_command(source_dir, build_dir, subdir, command, arguments): - env = {'MESON_SOURCE_ROOT' : source_dir, - 'MESON_BUILD_ROOT' : build_dir, - 'MESON_SUBDIR' : subdir + 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() -- cgit v1.1