Просмотр исходного кода

Use .exe extensions on cygwin. Fixes #2163

[SVN r50115]
Steven Watanabe 17 лет назад
Родитель
Сommit
8537fa5a21
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      tools/regression/src/regression.py

+ 4 - 0
tools/regression/src/regression.py

@@ -153,6 +153,10 @@ class runner:
             self.patch_boost = 'patch_boost.bat'
             self.bjam = { 'name' : 'bjam.exe' }
             self.process_jam_log = { 'name' : 'process_jam_log.exe' }
+        elif sys.platform == 'cygwin':
+            self.patch_boost = 'patch_boost'
+            self.bjam = { 'name' : 'bjam.exe' }
+            self.process_jam_log = { 'name' : 'process_jam_log.exe' }
         else:
             self.patch_boost = 'patch_boost'
             self.bjam = { 'name' : 'bjam' }

粤ICP备19079148号