From df2acae5a4bcbc4c76ebbeefcfb07f59c9ee2914 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Fri, 19 Dec 2008 08:28:49 +0000 Subject: Fix typo when getting system32 location. --- numpy/distutils/mingw32ccompiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy') diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index 310d44ce4..5769577e0 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -201,7 +201,7 @@ def find_python_dll(): lib_dirs = [] lib_dirs.append(os.path.join(sys.prefix, 'lib')) try: - lib_dirs.append(os.path.join(os.environ['SYSTEM_ROOT'], 'system32')) + lib_dirs.append(os.path.join(os.environ['SYSTEMROOT'], 'system32')) except KeyError: pass -- cgit v1.2.1