From 8e9bf3ddc999ef958c679cf72ed1c8f134ce3cbf Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 20 Jul 2016 16:21:55 +0530 Subject: [PATCH] Another oops --- setup/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/build.py b/setup/build.py index 6e0b930912..746989d500 100644 --- a/setup/build.py +++ b/setup/build.py @@ -170,8 +170,8 @@ def init_env(): ldflags.append('/LIBPATH:'+p) cflags.append('-I%s'%sysconfig.get_python_inc()) ldflags.append('/LIBPATH:'+os.path.join(sysconfig.PREFIX, 'libs')) - return namedtuple('Environment', 'cc cxx debug cflags ldflags make')( - cc=cc, cxx=cxx, debug=debug, cflags=cflags, ldflags=ldflags, make=NMAKE if iswindows else 'make') + return namedtuple('Environment', 'cc cxx cflags ldflags make')( + cc=cc, cxx=cxx, cflags=cflags, ldflags=ldflags, make=NMAKE if iswindows else 'make') class Build(Command):