summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@digia.com>2013-08-31 02:18:52 +0200
committerJędrzej Nowacki <jedrzej.nowacki@digia.com>2013-09-02 10:08:20 +0200
commitb7f22471800e9779fb9f80ed3e9607c789d3e129 (patch)
treef38607b5ca34eaac48aff523a73d15a2d6698020 /dist
parenta1d9a1091deca15ff554f92bb1838e85e8e3aea2 (diff)
downloadqtenginio-b7f22471800e9779fb9f80ed3e9607c789d3e129.tar.gz
Improve the output of create_installer.py
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 <jedrzej.nowacki@digia.com>
Diffstat (limited to 'dist')
-rw-r--r--dist/create_installer.py4
1 files changed, 2 insertions, 2 deletions
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"])