[pypy-svn] r59242 - pypy/branch/cbuild-refactor/pypy/translator

fijal at codespeak.net fijal at codespeak.net
Sun Oct 19 19:52:43 CEST 2008


Author: fijal
Date: Sun Oct 19 19:52:42 2008
New Revision: 59242

Modified:
   pypy/branch/cbuild-refactor/pypy/translator/driver.py
Log:
use py.path.local here as well


Modified: pypy/branch/cbuild-refactor/pypy/translator/driver.py
==============================================================================
--- pypy/branch/cbuild-refactor/pypy/translator/driver.py	(original)
+++ pypy/branch/cbuild-refactor/pypy/translator/driver.py	Sun Oct 19 19:52:42 2008
@@ -507,7 +507,7 @@
         newexename = self.exe_name % self.get_info()
         if '/' not in newexename and '\\' not in newexename:
             newexename = './' + newexename
-        return mkexename(newexename)
+        return mkexename(py.path.local(newexename))
 
     def create_exe(self):
         if self.exe_name is not None:



More information about the Pypy-commit mailing list