305a306,307
> ('BATCH', 'Use batch pool for build and tests', False),
> ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
371a374,379
> # Do this after we save setting back, or else we'll tack on an
> # extra 'qdo' every time we run scons.
> if env['BATCH']:
> env['CC'] = env['BATCH_CMD'] + ' ' + env['CC']
> env['CXX'] = env['BATCH_CMD'] + ' ' + env['CXX']
>
440d447
< env['OSX64bit'] = True
595,596d601
< BoolOption('BATCH', 'Use batch pool for build and tests', False),
< ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
822,827d826
< # Do this after we save setting back, or else we'll tack on an
< # extra 'qdo' every time we run scons.
< if env['BATCH']:
< env['CC'] = env['BATCH_CMD'] + ' ' + env['CC']
< env['CXX'] = env['BATCH_CMD'] + ' ' + env['CXX']
<