Merge pull request #224924 from amjoseph-nixpkgs/pr/antiword/cross

antiword: fix cross compilation
This commit is contained in:
Artturi 2023-04-07 07:01:44 +03:00 committed by GitHub
commit 65bfe06796
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,11 +11,15 @@ stdenv.mkDerivation rec{
prePatch = ''
sed -i -e "s|/usr/local/bin|$out/bin|g" -e "s|/usr/share|$out/share|g" Makefile antiword.h
substituteInPlace Makefile --replace "gcc" "cc"
substituteInPlace Makefile --replace "gcc" '$(CC)'
'';
patches = [ ./10_fix_buffer_overflow_wordole_c_CVE-2014-8123.patch ];
makeFlags = [
"CC=${stdenv.cc.targetPrefix}cc"
];
installTargets = [ "global_install" ];
meta = {