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

afayolle at codespeak.net afayolle at codespeak.net
Thu Dec 7 12:16:26 CET 2006


Author: afayolle
Date: Thu Dec  7 12:16:24 2006
New Revision: 35423

Modified:
   pypy/dist/pypy/tool/build/client.py
Log:
add pypy-c in the zip

Modified: pypy/dist/pypy/tool/build/client.py
==============================================================================
--- pypy/dist/pypy/tool/build/client.py	(original)
+++ pypy/dist/pypy/tool/build/client.py	Thu Dec  7 12:16:24 2006
@@ -93,6 +93,7 @@
     #    channelwrapper = ChannelWrapper(channel)
     buf = StringIO()
     zip = ZipFile(buf, 'w')
+    zip.writestr('pypy-c', open('pypy-c').read())
     for fpath in res_dir.visit():
         try:
             zip.writestr(fpath.relto(res_dir), fpath.read())



More information about the Pypy-commit mailing list