From 21fd87afe80a08fd98e765ecbdc748200b1a1556 Mon Sep 17 00:00:00 2001 From: adustman Date: Sat, 10 Feb 2007 03:41:19 +0000 Subject: [PATCH] Patch #1651584 (florentaide): Fixes Windows build --- MySQLdb/setup_windows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MySQLdb/setup_windows.py b/MySQLdb/setup_windows.py index 98327cb..d2a4c15 100644 --- a/MySQLdb/setup_windows.py +++ b/MySQLdb/setup_windows.py @@ -14,9 +14,9 @@ def get_config(): else: client = "mysqlclient" - library_dirs = [ os.path.join(mysql_root, r'\lib\opt') ] + library_dirs = [ os.path.join(mysql_root, r'lib\opt') ] libraries = [ 'kernel32', 'advapi32', 'wsock32', client ] - include_dirs = [ os.path.join(mysql_root, r'\include') ] + include_dirs = [ os.path.join(mysql_root, r'include') ] extra_compile_args = [ '/Zl' ] name = "MySQL-%s" % os.path.basename(sys.executable)