[pypy-svn] r37977 - pypy/dist/pypy/tool/build

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Feb 5 20:27:27 CET 2007


Author: cfbolz
Date: Mon Feb  5 20:27:25 2007
New Revision: 37977

Modified:
   pypy/dist/pypy/tool/build/buildserver.py
Log:
put the whole result into a directory, I hate it when unzipping pollutes your
current dir.


Modified: pypy/dist/pypy/tool/build/buildserver.py
==============================================================================
--- pypy/dist/pypy/tool/build/buildserver.py	(original)
+++ pypy/dist/pypy/tool/build/buildserver.py	Mon Feb  5 20:27:25 2007
@@ -131,7 +131,7 @@
         if fpath.ext in ['.o']:
             continue
         try:
-            zip.writestr(fpath.relto(res_dir), fpath.read())
+            zip.writestr("pypy-compiled/" + fpath.relto(res_dir), fpath.read())
         except (py.error.ENOENT, py.error.EISDIR), exc:
             print exc
             continue



More information about the Pypy-commit mailing list