# HG changeset patch # User ymh # Date 1424446468 -3600 # Node ID a634526a90bcaced0638ec87074df42a3778c078 # Parent 4c3f4d677bc515c58a324509c39c825b22316147 correct virtualenv creation diff -r 4c3f4d677bc5 -r a634526a90bc virtualenv/res/lib/lib_create_env.py --- a/virtualenv/res/lib/lib_create_env.py Fri Feb 20 14:58:00 2015 +0100 +++ b/virtualenv/res/lib/lib_create_env.py Fri Feb 20 16:34:28 2015 +0100 @@ -220,7 +220,7 @@ if sys.platform == 'darwin': python_ld_flags += ' -Wl,-dylib' elif 'linux' in sys.platform: - python_ld_flags += '-nostartfiles -Wl,-shared' + python_ld_flags += ' -nostartfiles -Wl,-shared' install_redland_bindings = gen_install_comp_lib('redland-bindings', "REDLAND_BINDINGS", ['--with-python=%(home_dir)s/bin/python', '--with-python-ldflags='+python_ld_flags], redland_base_env) def install_pystemmer(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop):