mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
openblas: fix pkg-config alias name
Turns out the filename is important. It should be `cblas`, not `openblas-cblas`.
This commit is contained in:
parent
b910b697f6
commit
408eacbc89
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ stdenv.mkDerivation rec {
|
|||
# Write pkgconfig aliases. Upstream report:
|
||||
# https://github.com/xianyi/OpenBLAS/issues/1740
|
||||
for alias in blas cblas lapack; do
|
||||
cat <<EOF > $out/lib/pkgconfig/openblas-$alias.pc
|
||||
cat <<EOF > $out/lib/pkgconfig/$alias.pc
|
||||
Name: $alias
|
||||
Version: ${version}
|
||||
Description: $alias provided by the OpenBLAS package.
|
||||
|
|
Loading…
Reference in a new issue