[pypy-svn] r41331 - pypy/dist/pypy/tool/build
cfbolz at codespeak.net
cfbolz at codespeak.net
Mon Mar 26 13:06:48 CEST 2007
Author: cfbolz
Date: Mon Mar 26 13:06:43 2007
New Revision: 41331
Modified:
pypy/dist/pypy/tool/build/config.py
Log:
aargh! this should really be translating = True. otherwise you can get really
funny effects.
Modified: pypy/dist/pypy/tool/build/config.py
==============================================================================
--- pypy/dist/pypy/tool/build/config.py (original)
+++ pypy/dist/pypy/tool/build/config.py Mon Mar 26 13:06:43 2007
@@ -27,7 +27,7 @@
from pypy.config.pypyoption import get_pypy_config
from pypy.translator.goal.translate import translate_optiondescr
from pypy.tool.build.compileoption import combine_config
-pypy_config = get_pypy_config()
+pypy_config = get_pypy_config(translating=True)
pypy_config.override({'translation.backend': 'c',
'translation.gc': 'boehm'})
translate_config = Config(translate_optiondescr)
More information about the Pypy-commit
mailing list