lol

openmpi: delete all libtool .la files

Clear all *.la from lib to reduce the number file in output.
These libtool files are not needed.

+1 -1
+1 -1
pkgs/development/libraries/openmpi/default.nix
··· 74 74 enableParallelBuilding = true; 75 75 76 76 postInstall = '' 77 - rm -f $out/lib/*.la 77 + find $out/lib/ -name "*.la" -exec rm -f \{} \; 78 78 ''; 79 79 80 80 postFixup = ''