Sfoglia il codice sorgente

Use .exe extensions on cygwin. Fixes #2163

[SVN r50115]
Steven Watanabe 17 anni fa
parent
commit
8537fa5a21
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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号