Merge pull request #134141 from marsam/fix-catdoc-darwin

catdoc: fix build on darwin
This commit is contained in:
Robert Scott 2021-08-15 23:03:19 +01:00 committed by GitHub
commit 752e56fa87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,6 +16,12 @@ stdenv.mkDerivation rec {
})
];
# Remove INSTALL file to avoid `make` misinterpreting it as an up-to-date
# target on case-insensitive filesystems e.g. Darwin
preInstall = ''
rm -v INSTALL
'';
configureFlags = [ "--disable-wordview" ];
meta = with lib; {