From 063c43e8710147e830629485419db06f3951a612 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 2 Feb 2017 20:16:40 +0530 Subject: [PATCH] Call shutdown after linux build as well --- setup/installers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/installers.py b/setup/installers.py index e425a23c86..79021dc3b1 100644 --- a/setup/installers.py +++ b/setup/installers.py @@ -39,7 +39,7 @@ def build_single(which, bitness, shutdown=True): except EnvironmentError: pass os.link(os.path.join(dist, x), dest) - if shutdown and which != 'linux': + if shutdown: cmd = [sys.executable, os.path.join(build_calibre, which), 'shutdown'] subprocess.Popen(cmd, env=env, cwd=build_calibre).wait()