From b7f22471800e9779fb9f80ed3e9607c789d3e129 Mon Sep 17 00:00:00 2001 From: Andras Becsi Date: Sat, 31 Aug 2013 02:18:52 +0200 Subject: Improve the output of create_installer.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build the sources with silent option and do not swallow the stdout so we see what happens during the package build. Change-Id: I0008c91bc9222fcf46e4dcd5e7e8736d49a3f329 Reviewed-by: Jędrzej Nowacki --- dist/create_installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist') diff --git a/dist/create_installer.py b/dist/create_installer.py index bb1f22b..e9bf352 100644 --- a/dist/create_installer.py +++ b/dist/create_installer.py @@ -52,7 +52,7 @@ os.chdir("build") #process.stdin.write("exit\n") #process.communicate() -subprocess.check_call([qmake, "../.."]) +subprocess.check_call([qmake, "CONFIG+=silent", "../.."]) print("Compiling Enginio...") try: @@ -60,7 +60,7 @@ try: except ImportError: DEVNULL = open(os.devnull, 'wb') -subprocess.check_call([make,], stdout=DEVNULL) +subprocess.check_call([make]) if sys.platform == "win32": # bug with jom subtargets subprocess.check_call(["nmake", "docs"]) -- cgit v1.2.1