meson_install: fix bad-continuation

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
pull/161/head
Igor Gnatenko 10 years ago
parent 8018315cfd
commit e954f8314b
  1. 3
      meson_install.py

@ -206,7 +206,8 @@ 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,
p = subprocess.Popen([d.depfixer, outname, install_rpath],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
(stdo, stde) = p.communicate()
if p.returncode != 0:

Loading…
Cancel
Save