diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-02-19 15:55:35 -0500 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-02-19 21:54:38 +0000 |
commit | ae14cdba12adb50c1ef69291d28d4be247217c8a (patch) | |
tree | f39b98c1a84bbd201cd41bc8dafafe7e9c049dee /dev-python/pythran | |
parent | dev-python/pythran: fix broken runtime metadata (diff) | |
download | gentoo-ae14cdba12adb50c1ef69291d28d4be247217c8a.tar.gz gentoo-ae14cdba12adb50c1ef69291d28d4be247217c8a.tar.bz2 gentoo-ae14cdba12adb50c1ef69291d28d4be247217c8a.zip |
dev-python/pythran: add comment explaining an inscrutable sed
It's not obvious why this change needs to be made in installed code, and
in particular why it is test-only.
I'm *still* not sure why this is the best change, but at least with a
link people can follow the logic when investigating.
Bug: https://bugs.gentoo.org/916461
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-python/pythran')
-rw-r--r-- | dev-python/pythran/pythran-0.15.0-r1.ebuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dev-python/pythran/pythran-0.15.0-r1.ebuild b/dev-python/pythran/pythran-0.15.0-r1.ebuild index 8c679fe4ddd9..dabf2bf2232e 100644 --- a/dev-python/pythran/pythran-0.15.0-r1.ebuild +++ b/dev-python/pythran/pythran-0.15.0-r1.ebuild @@ -61,6 +61,7 @@ src_configure() { rm -r pythran/{boost,xsimd} || die if use test ; then + # https://bugs.gentoo.org/916461 sed -i \ -e 's|blas=blas|blas=cblas|' \ -e 's|libs=|libs=cblas|' \ |