[pypy-svn] r35433 - pypy/dist/pypy/translator

antocuni at codespeak.net antocuni at codespeak.net
Thu Dec 7 14:22:35 CET 2006


Author: antocuni
Date: Thu Dec  7 14:22:34 2006
New Revision: 35433

Modified:
   pypy/dist/pypy/translator/driver.py
Log:
Copy the executable to the goal/ dir only if exe_name is defined.



Modified: pypy/dist/pypy/translator/driver.py
==============================================================================
--- pypy/dist/pypy/translator/driver.py	(original)
+++ pypy/dist/pypy/translator/driver.py	Thu Dec  7 14:22:34 2006
@@ -581,7 +581,7 @@
             unpatch(*self.old_cli_defs)
         
         self.log.info("Compiled %s" % filename)
-        if self.standalone:
+        if self.standalone and self.exe_name:
             self.copy_cli_exe()
     task_compile_cli = taskdef(task_compile_cli, ['source_cli'],
                               'Compiling CLI source')



More information about the Pypy-commit mailing list