Skip to content

Commit

Permalink
[svn r3607] Remove optimize=0 from distutils.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
ianb committed Sep 29, 2008
1 parent 83d39c5 commit 4f2404b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualenv.py
Expand Up @@ -683,7 +683,7 @@ def install_distutils(lib_dir, home_dir):
## FIXME: maybe this prefix setting should only be put in place if
## there's a local distutils.cfg with a prefix setting?
home_dir = os.path.abspath(home_dir)
distutils_cfg = DISTUTILS_CFG + "\n[install]\nprefix=%s\noptimize=0\n" % home_dir
distutils_cfg = DISTUTILS_CFG + "\n[install]\nprefix=%s\n" % home_dir
writefile(os.path.join(distutils_path, '__init__.py'), DISTUTILS_INIT)
writefile(os.path.join(distutils_path, 'distutils.cfg'), distutils_cfg, overwrite=False)

Expand Down

0 comments on commit 4f2404b

Please sign in to comment.