summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"])