From f7e2171937cd61df613d57c9046c6bd74014173c Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 11 Mar 2016 17:12:16 +0100 Subject: [PATCH] chromium/common: Shut up about precompiling .pyc's The errors are completely non-fatal and only cause a particular file to be not precompiled. Unfortunately this can lead to confusion to whether these errors are real errors or not, so let's shut it up completely because they're *not* real errors. Signed-off-by: aszlig --- pkgs/applications/networking/browsers/chromium/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 237dfd17ac71..c63f57f934d4 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -183,7 +183,7 @@ let configurePhase = '' # Precompile .pyc files to prevent race conditions during build - python -m compileall -q -f . || : # ignore errors + python -m compileall -q -f . > /dev/null 2>&1 || : # ignore errors # This is to ensure expansion of $out. libExecPath="${libExecPath}"