openmpi: delete all libtool .la files

Clear all *.la from lib to reduce the number file in output.
These libtool files are not needed.
This commit is contained in:
Markus Kowalewski 2023-10-08 21:23:22 +02:00
parent 50de82b10e
commit a56afaa19e

View File

@ -74,7 +74,7 @@ in stdenv.mkDerivation rec {
enableParallelBuilding = true;
postInstall = ''
rm -f $out/lib/*.la
find $out/lib/ -name "*.la" -exec rm -f \{} \;
'';
postFixup = ''