Control: tags -1 confirmed
thanks
On Thu, Dec 08, 2022 at 04:42:10PM +0100, Marc Haber wrote:
> autopkgtest --user debci . -- lxc --sudo autopkgtest-unstable-amd64
> shows the same issue like you see.
Try this patch:
4 [46/4891]mh@salida:~/packages/sudo/sudo (master *%|u=) $ cat
debian/patches/dont-create-ChangeLog
--- a/Makefile.in
+++ b/Makefile.in
@@ -235,17 +235,7 @@ depend: siglist.c signame.c
--file $(top_builddir)/src/Makefile
ChangeLog:
- if test -d $(srcdir)/.hg; then \
- if hg log -R $(srcdir) --template=changelog -r "sort(branch(.) or
follow(), -date)" > [email protected]; then \
- mv -f [email protected] $(srcdir)/$@; \
- else \
- rm -f [email protected]; \
- fi; \
- elif test -d $(srcdir)/.git; then \
- $(scriptdir)/log2cl.pl -R $(srcdir)/.git > $(srcdir)/$@; \
- elif test ! -f $(srcdir)/$@; then \
- echo "ChangeLog data not available" > $(srcdir)/$@; \
- fi
+ true
config.status:
@if [ ! -s config.status ]; then \
With this one,
autopkgtest --user debci . -- lxc --sudo autopkgtest-unstable-amd64
gets as far as the other variants.
Greetings
Marc