From 451769d85f595ed9b6ea678663c10ab63d027a16 Mon Sep 17 00:00:00 2001 From: Roger Binns Date: Mon, 26 Aug 2024 06:49:51 -0700 Subject: [PATCH] Fix wrong var name Nobody hit this in 10 months! --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 90b07f88..51d6d374 100644 --- a/setup.py +++ b/setup.py @@ -591,7 +591,7 @@ def finalize_options(self): if os.path.isdir(sqlite3_dir) and len(glob.glob(os.path.join(sqlite3_dir, "*"))) > 3: write("SQLite: Using include/libraries in sqlite3 subdirectory") inc = True - ext.library_dirs.append(d) + ext.library_dirs.append(sqlite3_dir) else: write("SQLite: Using system sqlite include/libraries") if inc: