[pypy-svn] r35306 - pypy/dist/pypy/tool/build/bin

afayolle at codespeak.net afayolle at codespeak.net
Tue Dec 5 16:57:49 CET 2006


Author: afayolle
Date: Tue Dec  5 16:57:48 2006
New Revision: 35306

Modified:
   pypy/dist/pypy/tool/build/bin/client
Log:
Updated to new option handling scheme
Fixed undefined symbol outdir



Modified: pypy/dist/pypy/tool/build/bin/client
==============================================================================
--- pypy/dist/pypy/tool/build/bin/client	(original)
+++ pypy/dist/pypy/tool/build/bin/client	Tue Dec  5 16:57:48 2006
@@ -50,7 +50,7 @@
             # XXX we should compile here, using data dict for info
             print 'compilation requested for info %r, now faking that' % (
                     data,)
-            config = Config(pypyoption.pypy_optiondescription)
+            config = pypyoption.get_pypy_config()
             config.override(compileinfo)
 
             # XXX compile here...
@@ -62,7 +62,7 @@
             channelwrapper = ChannelWrapper(channel)
             zip = ZipFile(channelwrapper, 'w')
             for fpath in udir.visit():
-                zip.writestr(fpath.relto(outdir), fpath.read())
+                zip.writestr(fpath.relto(udir), fpath.read())
             zip.close()
 
             print 'done with compilation, waiting for next'



More information about the Pypy-commit mailing list