30 lines
901 B
Diff
30 lines
901 B
Diff
From a0bcd1cfe9d74258febee80f116cc9f93b5381a4 Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Thu, 17 Jun 2021 18:52:15 +0530
|
|
Subject: [PATCH 060/N] disable broken gdbm module
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Co-authored-by: Алексей <alexey.pawlow@gmail.com>
|
|
---
|
|
setup.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index 1df8b5f..e3d8abd 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -1506,7 +1506,7 @@ class PyBuildExt(build_ext):
|
|
if dbm_args:
|
|
dbm_order = [arg.split('=')[-1] for arg in dbm_args][-1].split(":")
|
|
else:
|
|
- dbm_order = "ndbm:gdbm:bdb".split(":")
|
|
+ dbm_order = []
|
|
dbmext = None
|
|
for cand in dbm_order:
|
|
if cand == "ndbm":
|
|
--
|
|
2.36.1
|
|
|