[pypy-commit] pypy default: Write a longer description. Thanks to Timo Paulssen.

arigo noreply at buildbot.pypy.org
Fri May 13 15:32:32 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r44132:a03e7349ac88
Date: 2011-05-13 15:40 +0200
http://bitbucket.org/pypy/pypy/changeset/a03e7349ac88/

Log:	Write a longer description. Thanks to Timo Paulssen.

diff --git a/pypy/translator/goal/app_main.py b/pypy/translator/goal/app_main.py
--- a/pypy/translator/goal/app_main.py
+++ b/pypy/translator/goal/app_main.py
@@ -204,9 +204,11 @@
         dirname = resolvedirof(search)
         if dirname == search:
             # not found!  let's hope that the compiled-in path is ok
-            print >> sys.stderr, ('debug: WARNING: library path not found, '
-                                  'using compiled-in sys.path '
-                                  'and sys.prefix will be unset')
+            print >> sys.stderr, """\
+debug: WARNING: Library path not found, using compiled-in sys.path.
+debug: WARNING: 'sys.prefix' will not be set.
+debug: WARNING: Make sure the pypy binary is kept inside its tree of files.
+debug: WARNING: It is ok to create a symlink to it from somewhere else."""
             newpath = sys.path[:]
             break
         newpath = sys.pypy_initial_path(dirname)


More information about the pypy-commit mailing list