[pypy-svn] r70633 - pypy/build/bot2/pypybuildbot

fijal at codespeak.net fijal at codespeak.net
Fri Jan 15 21:37:55 CET 2010


Author: fijal
Date: Fri Jan 15 21:37:54 2010
New Revision: 70633

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
Disable the hack, but leave it since it might be useful


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Fri Jan 15 21:37:54 2010
@@ -60,9 +60,9 @@
         kw['targetArgs'] = targetArgs
         kw['timeout'] = 3600
         ShellCmd.__init__(self, workdir, *a, **kw)
-        #self.command = (self.command + translationArgs +
-        #                [self.translationTarget] + targetArgs)
-        self.command = ['cp', '/tmp/pypy-c', '.']
+        self.command = (self.command + translationArgs +
+                        [self.translationTarget] + targetArgs)
+        #self.command = ['cp', '/tmp/pypy-c', '.']
 
 # ________________________________________________________________
 



More information about the Pypy-commit mailing list