8 lines
158 B
Python
8 lines
158 B
Python
|
def FlagsForFile( filename, **kwargs ):
|
||
|
temp_dir = kwargs[ 'client_data' ][ 'tempname()' ]
|
||
|
|
||
|
return {
|
||
|
'flags': [ temp_dir ],
|
||
|
'do_cache': False
|
||
|
}
|