[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] branch master updated: check: drop unused trs_list var
From: |
Mike Frysinger |
Subject: |
[automake-commit] branch master updated: check: drop unused trs_list variable |
Date: |
Wed, 04 Jan 2023 19:24:44 -0500 |
This is an automated email from the git hooks/post-receive script.
vapier pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=efc7dc405ecedd61eedb5ad75f930550ffd7779c
The following commit(s) were added to refs/heads/master by this push:
new efc7dc405 check: drop unused trs_list variable
efc7dc405 is described below
commit efc7dc405ecedd61eedb5ad75f930550ffd7779c
Author: Mike Frysinger <vapier@gentoo.org>
AuthorDate: Tue Jan 3 23:30:29 2023 -0500
check: drop unused trs_list variable
When the code that used this variable was removed, the variable
itself was left behind. Clean that up now too.
* lib/am/check.am: Delete trs_list.
---
lib/am/check.am | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/am/check.am b/lib/am/check.am
index 45d021feb..f0c9ddfbe 100644
--- a/lib/am/check.am
+++ b/lib/am/check.am
@@ -417,11 +417,10 @@ check-TESTS: %CHECK_DEPS%
@$(am__rm_f) $(TEST_SUITE_LOG)
@set +e; $(am__set_TESTS_bases); \
log_list=`for i in $$bases; do echo $$i.log; done`; \
- trs_list=`for i in $$bases; do echo $$i.trs; done`; \
## Remove newlines and normalize whitespace. Trailing (and possibly
## leading) whitespace is known to cause segmentation faults on
## Solaris 10 XPG4 make.
- log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
+ log_list=`echo $$log_list`; \
$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
## Be sure to exit with the proper exit status (automake bug#9245). See
## comments in the recipe of $(TEST_SUITE_LOG) above for more information.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [automake-commit] branch master updated: check: drop unused trs_list variable,
Mike Frysinger <=