hdf5: Fix flavored builds with multiple outputs

This commit is contained in:
Thomas Tuegel 2019-09-27 05:53:14 -05:00 committed by Frederik Rietdijk
parent 7f01d9b913
commit 734979f794

View file

@ -53,7 +53,10 @@ stdenv.mkDerivation rec {
postInstall = ''
find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
moveToOutput bin/h5cc "''${!outputDev}"
moveToOutput 'bin/h5cc' "''${!outputDev}"
moveToOutput 'bin/h5c++' "''${!outputDev}"
moveToOutput 'bin/h5fc' "''${!outputDev}"
moveToOutput 'bin/h5pcc' "''${!outputDev}"
'';
meta = {