blob: 8cefb4828c7b271c478fb395ba42fdf8b323535e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/configure.py b/configure.py
index 43af22d..7989b1f 100644
--- a/configure.py
+++ b/configure.py
@@ -183,7 +183,7 @@ def get_python_path(environ_cp, python_bin_path):
paths = []
for path in all_paths:
- if os.path.isdir(path):
+ if os.path.isdir(path) or True:
paths.append(path)
return paths
|