Skip to content

Commit

Permalink
openblas: fix pkg-config alias name
Browse files Browse the repository at this point in the history
Turns out the filename is important. It should be `cblas`, not
`openblas-cblas`.
  • Loading branch information
timokau committed Sep 3, 2018
1 parent b910b69 commit 408eacb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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.
Expand Down

0 comments on commit 408eacb

Please sign in to comment.