nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

redo-apenwarr: Fix failure with bash-5.3 (#429699)

authored by

Aleksana and committed by
GitHub
9d54bb78 59c7b823

+8 -5
+8 -5
pkgs/by-name/re/redo-apenwarr/package.nix
··· 31 31 unset CC CXX 32 32 33 33 substituteInPlace minimal/do.test \ 34 - --replace "/bin/pwd" "${coreutils}/bin/pwd" 34 + --replace-fail "/bin/pwd" "${coreutils}/bin/pwd" 35 35 36 36 substituteInPlace t/105-sympath/all.do \ 37 - --replace "/bin/pwd" "${coreutils}/bin/pwd" 37 + --replace-fail "/bin/pwd" "${coreutils}/bin/pwd" 38 38 39 39 substituteInPlace t/all.do \ 40 - --replace "/bin/ls" "ls" 40 + --replace-fail "/bin/ls" "ls" 41 41 42 42 substituteInPlace t/110-compile/hello.o.do \ 43 - --replace "/usr/include" "${lib.getDev stdenv.cc.libc}/include" 43 + --replace-fail "/usr/include" "${lib.getDev stdenv.cc.libc}/include" 44 44 45 45 substituteInPlace t/200-shell/nonshelltest.do \ 46 - --replace "/usr/bin/env perl" "${perl}/bin/perl" 46 + --replace-fail "/usr/bin/env perl" "${perl}/bin/perl" 47 47 48 + # See https://github.com/apenwarr/redo/pull/47 49 + substituteInPlace minimal/do \ 50 + --replace-fail 'cd "$dodir"' 'cd "''${dodir:-.}"' 48 51 ''; 49 52 50 53 inherit doCheck;