Should have said Arch Linux Issue 75727.
On Sun, Oct 16, 2022 at 5:20 PM Ron Lovell wrote:
> Same issue as Arch issue 279267?
>
> --
> James Ronald Lovell
> Huntsville, AL, USA
>
>
--
James Ronald Lovell
Huntsville, AL, USA
Same issue as Arch issue 279267?
--
James Ronald Lovell
Huntsville, AL, USA
My MPI issues were resolved by 3.1.2-2.
Great work, guys.
--
James Ronald Lovell
Huntsville, AL, USA
The libpmix2 update causes my MPI programs compiled with
gcc/gfortran/clang to fail at runtime with the same messages.
--
James Ronald Lovell
Oops. Last one should be:
[ -d path ] && [ ! -L path ]
--
James Ronald Lovell
I still remember the first time that one bit me: "[ -e path]" fails if path
is a dead symlink. There are other pitfalls testing symlinks. Some idioms
I use:
Does path exist?
[ -e path ] || [ -L path ]
Is path really a regular file?
[ -f path ] && [ ! -L path ]
A directory?
[ -d path ] && [ ! -d
libgtk-3-0_3.24.0-2_amd64 does fix the issue on my system. Great work, guys!
-- Forwarded message --
From: Ron Lovell
Date: Mon, Feb 19, 2018 at 8:45 PM
Subject: python3-keyrings.alt 2.2-2 module.__file__ is None, causing
regrtest.py to fail
To: 890...@bugs.debian.org, 890...@bugs.debian.org
If I'm following correctly, it appears the issue with py
If I'm following correctly, it appears the issue with python3-keyrings.alt
and libpython3.6-testsuite could be resolved with this change to
libregrtest/setup.py:
60c60
< if hasattr(module, '__file__'):
---
> if getattr(module, '__file__', None):
That works as before for missing __
9 matches
Mail list logo