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=0b3b13a724fafea31a5e3ff498efef7c33a28a96 commit 0b3b13a724fafea31a5e3ff498efef7c33a28a96 (HEAD -> main) Author: Guillem Jover <[email protected]> AuthorDate: Wed Dec 8 03:38:45 2021 +0100 build: Fix relocated autotest test suite runner - We need to build the current directory first with the tools. - Remove unused entry in PATH for utils/. - Use absolute path relative to the current source directory instead of the top one. Fixes: commit 1e61d9416719b628ec0e93ced10fe4c1f38ef105 --- src/Makefile.am | 1 + src/at/atlocal.in | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 88f688230..8ebaba88c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,7 @@ ## Process this file with automake to produce Makefile.in SUBDIRS = \ + . \ at \ # EOL diff --git a/src/at/atlocal.in b/src/at/atlocal.in index b9aaa43d9..0054e31fb 100644 --- a/src/at/atlocal.in +++ b/src/at/atlocal.in @@ -1,9 +1,9 @@ # Global shell definitions for the autotest test suite -PATH="@abs_top_builddir@/src:@abs_top_builddir@/utils:$PATH" +PATH="@abs_top_builddir@/src:$PATH" export PATH -TESTDATA="@abs_top_srcdir@/at" +TESTDATA="@abs_srcdir@" export TESTDATA SED=@SED@ -- Dpkg.Org's dpkg

