This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hergen
Recipients dmurphy18, hergen
Date 2021-01-30.11:48:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1612007310.9.0.520887053543.issue42896@roundup.psfhosted.org>
In-reply-to
Content
For python 3.8.7 should be:

--- util.py.broken      2021-01-30 12:15:35.047669249 +0100
+++ util.py     2021-01-30 12:28:04.425931587 +0100
@@ -251,6 +251,9 @@
                     line = line.strip()
                     if line.startswith(b'Default Library Path (ELF):'):
                         paths = os.fsdecode(line).split()[4]
+                    elif line.startswith(b'Default Library Path:'):
+                        ## allow for Solaris 11.4 output
+                        paths = os.fsdecode(line).split()[3]
 
             if not paths:
                 return None
History
Date User Action Args
2021-01-30 11:48:30hergensetrecipients: + hergen, dmurphy18
2021-01-30 11:48:30hergensetmessageid: <1612007310.9.0.520887053543.issue42896@roundup.psfhosted.org>
2021-01-30 11:48:30hergenlinkissue42896 messages
2021-01-30 11:48:30hergencreate