libvorbis: Add comment on -mno-ieee-fp flag strip

This commit is contained in:
Giulio De Pasquale 2022-10-15 17:25:20 +02:00 committed by ehmry
parent 2e3eff3ed0
commit 3d61633563

View file

@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
doCheck = true;
# strip -mno-ieee-fp flag from configure and configure.ac when using
# clang as the flag is not recognized by the compiler
preConfigure = lib.optionalString (stdenv.cc.isClang or false) ''
sed s/\-mno\-ieee\-fp// -i {configure,configure.ac}
'';