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=bed9621d25fb4e78d4e13b0bb54750c6c198fadb commit bed9621d25fb4e78d4e13b0bb54750c6c198fadb Author: Guillem Jover <[email protected]> AuthorDate: Fri Oct 28 19:33:53 2022 +0200 build: Move authorcheck target to tap.am This makes this target available on any directory that contains TAP tests, and not just the source-tree root. --- Makefile.am | 3 --- build-aux/tap.am | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 16c8634e4..38ed168e0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -212,9 +212,6 @@ include $(top_srcdir)/build-aux/tap.am check-local: tap-check -authorcheck: - AUTHOR_TESTING=1 $(MAKE) check - .PHONY: update-po update-po: diff --git a/build-aux/tap.am b/build-aux/tap.am index 8a713c3eb..9ec8de64f 100644 --- a/build-aux/tap.am +++ b/build-aux/tap.am @@ -29,3 +29,6 @@ tap-check: $(test_data) $(test_programs) $(test_scripts) $(PERL) $(top_srcdir)/build-aux/test-runner \ $(addprefix $(builddir)/,$(test_programs)) \ $(addprefix $(srcdir)/,$(test_scripts)) + +authorcheck: + AUTHOR_TESTING=1 $(MAKE) check -- Dpkg.Org's dpkg

