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:
parent
e54434751a
commit
f7e2171937
@ -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}"
|
||||
|
Loading…
Reference in New Issue
Block a user