Suppress warnings in the new SCons version about an obscure

possible Windows race condition (file handles being held open an
indeterminate amount of time after being closed in other threads).

R: mpcomplete
Review URL: http://codereview.chromium.org/2940

git-svn-id: http://src.chromium.org/svn/trunk/src/build@2325 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
sgk@google.com 2008-09-17 20:21:20 +00:00
Родитель adc13b7223
Коммит 82290d8085
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -14,7 +14,8 @@ elif p == 'name':
Progress('$TARGET\r', overwrite=True, file=open('con', 'w'))
SetOption('warn', ['no-missing-sconscript'] + GetOption('warn'))
default_warnings = ['no-missing-sconscript', 'no-no-parallel-support']
SetOption('warn', default_warnings + GetOption('warn'))
load = ARGUMENTS.get('LOAD')