diff options
| author | Jubilee Young <workingjubilee@gmail.com> | 2022-11-26 18:47:52 -0800 |
|---|---|---|
| committer | Jubilee Young <workingjubilee@gmail.com> | 2022-11-26 20:07:07 -0800 |
| commit | 47ddca6812300da235073c0cbef058ff3bd033bf (patch) | |
| tree | 9766f92d5307e00c54dd2164073f432c1726c65d | |
| parent | 353cef9654444799ed03576acbcc3af26f9899fd (diff) | |
| download | rust-47ddca6812300da235073c0cbef058ff3bd033bf.tar.gz rust-47ddca6812300da235073c0cbef058ff3bd033bf.zip | |
Attempt to solve problem with globs
| -rw-r--r-- | src/test/run-make/coverage-reports/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/coverage-reports/Makefile b/src/test/run-make/coverage-reports/Makefile index 407992c9f43..436aebf1174 100644 --- a/src/test/run-make/coverage-reports/Makefile +++ b/src/test/run-make/coverage-reports/Makefile @@ -132,7 +132,7 @@ include clear_expected_if_blessed --instr-profile="$(TMPDIR)"/$@.profdata \ $(call BIN,"$(TMPDIR)"/$@) \ $$( \ - for file in $(TMPDIR)/rustdoc-$@/*/rust_out; do \ + for file in $(TMPDIR)/rustdoc-$@/*/rust_out*; do \ [ -x "$$file" ] && printf "%s %s " -object $$file; \ done \ ) \ |
