Merge #282849: rav1e: fix strip option mangling on x86_64-darwin

...into staging-next

+1 -1
+1 -1
pkgs/tools/video/rav1e/default.nix
··· 38 38 # Darwin uses `llvm-strip`, which results in link errors when using `-x` to strip the asm library 39 39 # and linking it with cctools ld64. 40 40 postPatch = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) '' 41 - substituteInPlace build.rs --replace 'cmd.arg("-x")' 'cmd.arg("-S")' 41 + substituteInPlace build.rs --replace-fail '.arg("-x")' '.arg("-S")' 42 42 ''; 43 43 44 44 checkType = "debug";