mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
Merge pull request #134141 from marsam/fix-catdoc-darwin
catdoc: fix build on darwin
This commit is contained in:
commit
752e56fa87
@ -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 New Issue
Block a user