This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=f000080a3cc0bad464ae5d8ca775f481142f1448 commit f000080a3cc0bad464ae5d8ca775f481142f1448 Author: Guillem Jover <[email protected]> AuthorDate: Fri Dec 10 15:49:39 2021 +0100 build: Refactor autotest dependencies into a new variable --- src/at/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/at/Makefile.am b/src/at/Makefile.am index 817a0c8cd..3100d1d8f 100644 --- a/src/at/Makefile.am +++ b/src/at/Makefile.am @@ -17,6 +17,8 @@ EXTRA_DIST += $(TESTSUITE) DISTCLEANFILES = atconfig +AUTOTEST_DEPS = atconfig atlocal $(TESTSUITE) + # The ":;" works around a Bash 3.2 bug when the output is not writable. $(srcdir)/package.m4: $(top_srcdir)/configure.ac :;{ \ @@ -29,10 +31,10 @@ $(srcdir)/package.m4: $(top_srcdir)/configure.ac echo 'm4_define([AT_PACKAGE_BUGREPORT], [$(PACKAGE_BUGREPORT)])'; \ } >'$(srcdir)/package.m4' -check-local: atconfig atlocal $(TESTSUITE) +check-local: $(AUTOTEST_DEPS) $(SHELL) '$(TESTSUITE)' $(TESTSUITEFLAGS) -installcheck-local: atconfig atlocal $(TESTSUITE) +installcheck-local: $(AUTOTEST_DEPS) $(SHELL) '$(TESTSUITE)' AUTOTEST_PATH='$(bindir)' $(TESTSUITEFLAGS) clean-local: -- Dpkg.Org's dpkg

