mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-18 09:05:49 +00:00
Merge pull request #145259 from risicle/ris-zita-resampler-aarch64
zita-resampler: fix build for aarch64
This commit is contained in:
commit
0ae1a8ace3
1 changed files with 5 additions and 1 deletions
|
@ -15,7 +15,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
patchPhase = ''
|
||||
cd source
|
||||
sed -e "s@ldconfig@@" -i Makefile
|
||||
substituteInPlace Makefile \
|
||||
--replace 'ldconfig' ""
|
||||
'' + lib.optionalString (!stdenv.targetPlatform.isx86_64) ''
|
||||
substituteInPlace Makefile \
|
||||
--replace '-DENABLE_SSE2' ""
|
||||
'';
|
||||
|
||||
fixupPhase = ''
|
||||
|
|
Loading…
Add table
Reference in a new issue