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 <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2016-03-11 17:12:16 +01:00
parent e54434751a
commit f7e2171937
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -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}"