about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2022-11-26 18:47:52 -0800
committerJubilee Young <workingjubilee@gmail.com>2022-11-26 20:07:07 -0800
commit47ddca6812300da235073c0cbef058ff3bd033bf (patch)
tree9766f92d5307e00c54dd2164073f432c1726c65d
parent353cef9654444799ed03576acbcc3af26f9899fd (diff)
downloadrust-47ddca6812300da235073c0cbef058ff3bd033bf.tar.gz
rust-47ddca6812300da235073c0cbef058ff3bd033bf.zip
Attempt to solve problem with globs
-rw-r--r--src/test/run-make/coverage-reports/Makefile2
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 \
 			) \