You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-mail/mailman/files/mailman-2.1.29-fix-libdir.diff

21 lines
665 B

--- misc/paths.py.in 2018-06-17 23:47:34 +0000
+++ misc/paths.py.in 2019-08-16 15:18:03 +0000
@@ -67,6 +67,16 @@
'dist-packages')
sys.path.append(distdir)
+# Some distros may have the python library in a directory other than lib/
+# such as Lib/ or lib64/. Hopefully they will have hacked
+# site.getsitepackages() to return the right thing.
+try:
+ import site
+ sys.path.extend(site.getsitepackages())
+ del site
+except (ImportError, AttributeError):
+ pass
+
# In a normal interactive Python environment, the japanese.pth and korean.pth
# files would be imported automatically. But because we inhibit the importing