catdoc: fix build on darwin
This commit is contained in:
parent
d5ae62096e
commit
fb5893edba
1 changed files with 6 additions and 0 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue