diff options
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -185,5 +185,6 @@ def make_manual(target): return [os.path.abspath('pdf'), os.path.abspath('html'), os.path.abspath('colour.pdf')] def test(target): - target.set('LC_ALL', 'C') - target.command('run/tests') + if target.platform != 'windows': + target.set('LC_ALL', 'C') + target.command('run/tests') |
