31 lines
951 B
Diff
31 lines
951 B
Diff
From b58a74aad23a5ea783c4f9a2a2f055cf6b6696dd 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>
|
|
Signed-off-by: Naveen M K <naveen521kk@gmail.com>
|
|
---
|
|
setup.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index a0886ac..25ddf1f 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -1504,7 +1504,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.35.1
|
|
|