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=46ca7d944d1c876b0d345a6853ce3ff1ea42dea9 commit 46ca7d944d1c876b0d345a6853ce3ff1ea42dea9 Author: Guillem Jover <[email protected]> AuthorDate: Sat Apr 20 19:28:54 2024 +0200 build: Pass abs_srcdir and abs_builddir to the TAP driver We will need at least the abs_builddir to add tests for getcwd(), so we add both out of completeness. --- build-aux/tap.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-aux/tap.am b/build-aux/tap.am index 9ec8de64f..e2865309c 100644 --- a/build-aux/tap.am +++ b/build-aux/tap.am @@ -18,6 +18,8 @@ tap-clean: tap-check: $(test_data) $(test_programs) $(test_scripts) [ -z "$(test_tmpdir)" ] || $(MKDIR_P) $(test_tmpdir) $(TEST_ENV_VARS) \ + abs_srcdir=$(abs_srcdir) \ + abs_builddir=$(abs_builddir) \ abs_top_srcdir=$(abs_top_srcdir) \ abs_top_builddir=$(abs_top_builddir) \ srcdir=$(srcdir) builddir=$(builddir) \ -- Dpkg.Org's dpkg

