[pypy-commit] pypy default: update the error message now that we don't have --output any more

arigo noreply at buildbot.pypy.org
Fri Feb 6 12:06:56 CET 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r75734:a2df20419f11
Date: 2015-02-06 12:06 +0100
http://bitbucket.org/pypy/pypy/changeset/a2df20419f11/

Log:	update the error message now that we don't have --output any more

diff --git a/rpython/translator/goal/translate.py b/rpython/translator/goal/translate.py
--- a/rpython/translator/goal/translate.py
+++ b/rpython/translator/goal/translate.py
@@ -308,7 +308,9 @@
                 samefile = this_exe.samefile(exe_name)
                 assert not samefile, (
                     'Output file %s is the currently running '
-                    'interpreter (use --output=...)' % exe_name)
+                    'interpreter (please move the executable, and '
+                    'possibly its associated libpypy-c, somewhere else '
+                    'before you execute it)' % exe_name)
             except EnvironmentError:
                 pass
 


More information about the pypy-commit mailing list