From e954f8314b8f146fe392cff29769820755db88b9 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Fri, 19 Jun 2015 10:22:19 +0300 Subject: [PATCH] meson_install: fix bad-continuation Signed-off-by: Igor Gnatenko --- meson_install.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/meson_install.py b/meson_install.py index aaf07c102..5643298a5 100755 --- a/meson_install.py +++ b/meson_install.py @@ -124,7 +124,7 @@ def run_install_script(d): env = {'MESON_SOURCE_ROOT' : d.source_dir, 'MESON_BUILD_ROOT' : d.build_dir, 'MESON_INSTALL_PREFIX' : d.prefix - } + } script = d.install_script print('Running custom install script %s' % script) suffix = os.path.splitext(script)[1].lower() @@ -206,8 +206,9 @@ def install_targets(d): print("Symlink creation does not work on this platform.") printed_symlink_error = True if is_elf_platform(): - p = subprocess.Popen([d.depfixer, outname, install_rpath], stdout=subprocess.PIPE, - stderr=subprocess.PIPE) + p = subprocess.Popen([d.depfixer, outname, install_rpath], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE) (stdo, stde) = p.communicate() if p.returncode != 0: print('Could not fix dependency info.\n')