From efde2d86441e918608b5632c56a76cd3ce102159 Mon Sep 17 00:00:00 2001 From: der richter Date: Mon, 22 Apr 2019 12:45:04 +0200 Subject: osxbundle: print the output of the dylib-unhell call --- TOOLS/osxbundle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TOOLS/osxbundle.py b/TOOLS/osxbundle.py index ba0efd9e7e..49a0a98e53 100755 --- a/TOOLS/osxbundle.py +++ b/TOOLS/osxbundle.py @@ -7,7 +7,7 @@ import fileinput from optparse import OptionParser def sh(command): - return os.popen(command).read() + return os.popen(command).read().strip() def bundle_path(binary_name): return "%s.app" % binary_name @@ -80,7 +80,7 @@ def main(): if options.deps: print("> bundling dependencies") - sh(" ".join(["TOOLS/dylib-unhell.py", target_binary(binary_name)])) + print(sh(" ".join(["TOOLS/dylib-unhell.py", target_binary(binary_name)]))) print("done.") -- cgit v1.2.3