1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

openmpi: fix libtool issue #18147 by stripping libtool *.la files

This commit is contained in:
Adrien Devresse 2016-08-31 12:03:07 +02:00
parent 7b3a36132a
commit 2a79d296d3

View file

@ -42,6 +42,10 @@ in stdenv.mkDerivation rec {
patchShebangs ompi/mpi/fortran/base/gen-mpi-sizeof.pl
'';
postInstall = ''
rm -f $out/lib/*.la
'';
meta = {
homepage = http://www.open-mpi.org/;
description = "Open source MPI-2 implementation";