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:
parent
7b3a36132a
commit
2a79d296d3
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue