aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index cb97af9..7df4847 100644
--- a/flake.nix
+++ b/flake.nix
@@ -82,7 +82,10 @@
preConfigure =
if pkgs.lib.versionOlder version "1.1.0h" && pkgs.lib.versionAtLeast version "1.1.0" then
''
- substituteInPlace Configure test/build.info test/run_tests.pl test/recipes/90-test_fuzz.t test/recipes/80-test_ssl_new.t test/recipes/40-test_rehash.t util/process_docs.pl --replace-fail "qw/glob/" "qw/bsd_glob/"
+ substituteInPlace Configure test/build.info test/run_tests.pl util/process_docs.pl --replace-warn "qw/glob/" "qw/bsd_glob/"
+ for t in test/recipes/*.t; do
+ substituteInPlace "$t" --replace-quiet "qw/glob/" "qw/bsd_glob/"
+ done
''
else
"";