]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
check: drop unused trs_list variable
authorMike Frysinger <vapier@gentoo.org>
Wed, 4 Jan 2023 04:30:29 +0000 (23:30 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 5 Jan 2023 00:20:23 +0000 (19:20 -0500)
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

index 45d021febfc4d2893c21fba2f85a28d3ee44a03a..f0c9ddfbe863d29840f00610ac22c2980f458be2 100644 (file)
@@ -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.