[pypy-svn] r30993 - pypy/dist/pypy/translator/cli
antocuni at codespeak.net
antocuni at codespeak.net
Fri Aug 4 14:51:52 CEST 2006
Author: antocuni
Date: Fri Aug 4 14:51:48 2006
New Revision: 30993
Modified:
pypy/dist/pypy/translator/cli/rte.py
Log:
Don't build pypylib-unix.dll when used as a script.
Modified: pypy/dist/pypy/translator/cli/rte.py
==============================================================================
--- pypy/dist/pypy/translator/cli/rte.py (original)
+++ pypy/dist/pypy/translator/cli/rte.py Fri Aug 4 14:51:48 2006
@@ -91,6 +91,4 @@
return DLL.get()
if __name__ == '__main__':
- dlls = [FrameworkDLL.get()]
- if platform.system() != 'Windows':
- dlls.append(UnixDLL.get())
+ FrameworkDLL.get()
More information about the Pypy-commit
mailing list