[pypy-svn] r48305 - pypy/dist/pypy/tool

fijal at codespeak.net fijal at codespeak.net
Mon Nov 5 09:15:58 CET 2007


Author: fijal
Date: Mon Nov  5 09:15:57 2007
New Revision: 48305

Modified:
   pypy/dist/pypy/tool/gcc_cache.py
Log:
Make sure that _cache exists as well. I thought it's enough to make sure about
child dir.


Modified: pypy/dist/pypy/tool/gcc_cache.py
==============================================================================
--- pypy/dist/pypy/tool/gcc_cache.py	(original)
+++ pypy/dist/pypy/tool/gcc_cache.py	Mon Nov  5 09:15:57 2007
@@ -5,6 +5,7 @@
 import py
 import distutils
 
+py.path.local(pypydir).join('_cache').ensure(dir=1)
 cache_dir = py.path.local(pypydir).join('_cache', 'gcc')
 cache_dir.ensure(dir=1)
 



More information about the Pypy-commit mailing list