Fixed typo

This commit is contained in:
Georg Richter
2020-05-06 05:23:09 +02:00
parent 87684a1fdb
commit 5334ddefa7

View File

@ -55,7 +55,7 @@ def get_config(options):
cfg.includes = [".\\include", mariadb_dir + "\\include", mariadb_dir + "\\include\\mysql"]
cfg.lib_dirs = [mariadb_dir + "\\lib"]
cfg.libs = ["ws2_32", "advapi32", "kernel32", "shlwapi", "crypt32"]
if static.lower() == "on" or static_lower == "default":
if static.lower() == "on" or static.lower == "default":
cfg.libs.append("mariadbclient")
else:
cfg.libs.append("libmariadb")