mkl: Fix pkg-config file

There was a spurious `intel64` in some library paths.
This commit is contained in:
Daniël de Kok 2020-11-06 09:55:12 +01:00
parent 0a6cdb667f
commit 702b626570

View File

@ -90,7 +90,8 @@ in stdenvNoCC.mkDerivation {
substituteInPlace $f \ substituteInPlace $f \
--replace "prefix=<INSTALLDIR>/mkl" "prefix=$out" \ --replace "prefix=<INSTALLDIR>/mkl" "prefix=$out" \
--replace $\{MKLROOT} "$out" \ --replace $\{MKLROOT} "$out" \
--replace "lib/intel64_lin" "lib" --replace "lib/intel64_lin" "lib" \
--replace "lib/intel64" "lib"
done done
for f in $(find opt/intel -name 'mkl*iomp.pc') ; do for f in $(find opt/intel -name 'mkl*iomp.pc') ; do