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=86590cc19c06ae0a8602535aabb364d894a0121c commit 86590cc19c06ae0a8602535aabb364d894a0121c Author: Guillem Jover <[email protected]> AuthorDate: Tue Jun 27 01:22:59 2023 +0200 build: Remove distcleancheck_listfiles override for CPAN dist-cpan target The dist-cpan target was a dependency for the dist-hook target, the problem was that the dist-cpan target generates an artifact on the build directory, so distcheck was complaining about this leftover. The way to workaround that at the time was to exclude it from the check, but because the dist-cpan target was unhooked from the dist-hook target, there is no need anymore to override this variable, which is generating automake warnings during «autogen». --- build-aux/cpan.am | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-aux/cpan.am b/build-aux/cpan.am index a9c12497e..a2ef40b93 100644 --- a/build-aux/cpan.am +++ b/build-aux/cpan.am @@ -44,7 +44,3 @@ dist-cpan: : # Cleanup the CPAN source tree. find $(CPAN_DIST) -type d ! -perm -200 -exec chmod u+w {} ';' rm -rf $(CPAN_DIST) - -# Ignore the CPAN archive for distcleancheck. -distcleancheck_listfiles = \ - find -type f \( -name $(CPAN_DIST_ARCHIVE) -o -print \) -- Dpkg.Org's dpkg

