From 2f9884a2d5783b663d82fbabf3fcf61f80411dbc Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 6 Jan 2015 13:05:43 +1100 Subject: [PATCH] * Rename --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0ec6e0044..f8a89a564 100644 --- a/setup.py +++ b/setup.py @@ -16,9 +16,9 @@ import platform # We have to resort to monkey-patching to set the compiler, because pypy broke # ALL the EVERTHING. -orig_customize_compiler = sysconfig.customize_compiler +pre_patch_customize_compiler = sysconfig.customize_compiler def my_customize_compiler(compiler): - orig_customize_compiler(compiler) + pre_patch_customize_compiler(compiler) compiler.compiler_cxx = ['c++']