[pypy-svn] r36472 - pypy/dist/pypy/bin

mwh at codespeak.net mwh at codespeak.net
Thu Jan 11 13:15:57 CET 2007


Author: mwh
Date: Thu Jan 11 13:15:54 2007
New Revision: 36472

Modified:
   pypy/dist/pypy/bin/buildserver.py
   pypy/dist/pypy/bin/startcompile.py
Log:
(mwh, cfbolz)

use /usr/bin/env python, not /usr/bin/python in build server related scripts.
if a build result is already available, give a hint as to on which machine it
can be found.


Modified: pypy/dist/pypy/bin/buildserver.py
==============================================================================
--- pypy/dist/pypy/bin/buildserver.py	(original)
+++ pypy/dist/pypy/bin/buildserver.py	Thu Jan 11 13:15:54 2007
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 
 import autopath
 import py

Modified: pypy/dist/pypy/bin/startcompile.py
==============================================================================
--- pypy/dist/pypy/bin/startcompile.py	(original)
+++ pypy/dist/pypy/bin/startcompile.py	Thu Jan 11 13:15:54 2007
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 
 import autopath
 from pypy.tool.build.bin import path
@@ -87,7 +87,7 @@
         ispath, data = data
         if ispath:
             print ('a suitable result is already available, you can find it '
-                   'at "%s"' % (data,))
+                   'at "%s" on %s' % (data, config.server))
         else:
             print data
             print 'you will be mailed once it\'s ready'



More information about the Pypy-commit mailing list