summaryrefslogtreecommitdiff
path: root/lang/python310/patches/patch-setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python310/patches/patch-setup.py')
-rw-r--r--lang/python310/patches/patch-setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python310/patches/patch-setup.py b/lang/python310/patches/patch-setup.py
index 6e38c3da2d2..130bd33decc 100644
--- a/lang/python310/patches/patch-setup.py
+++ b/lang/python310/patches/patch-setup.py
@@ -1,4 +1,4 @@
-$NetBSD: patch-setup.py,v 1.5 2022/04/03 10:54:52 riastradh Exp $
+$NetBSD: patch-setup.py,v 1.5.2.1 2022/07/09 10:48:17 bsiegert Exp $
Disable certain modules, so they can be built as separate packages.
Do not look for ncursesw.
@@ -26,7 +26,7 @@ Enable cross-build by setting sys._home and sys.path to build directory
from glob import glob, escape
import _osx_support
-+sys.path = [p for p in sys.path if not re.compile('^' + sys.base_prefix + '/').match(p)]
++sys.path = [p for p in sys.path if not re.compile('^' + sys.base_prefix + '/lib').match(p)]
try:
import subprocess