* master:
docs: adjust comment w.r.t. recent tests renaming
tests: some more renames for texinfo tests
tests: enhance and tweak some texinfo tests
tests: remove a redundant texinfo test
tests: don't list a removed tests in XFAIL_TESTS
tests: more explicative names for some tests
cleanup: drop a redundant %?FIRST% transform
maint: state when compatibility cruft should be removed or warned about
+ Non-trivial extra edits
* t/txinfo-other-suffixes.sh: Remove, Automake-NG only supports
'.texi' ad suffix for Texinfo files.
* t/txinfo-without-info-suffix.sh: Remove, Automake-NG doesn't
support generating suffix-less info files.
* t/txinfo-no-repeated-targets.sh: Remove, superseded by test
't/txinfo-rules-once.sh' (see [ng] commit
v1.12.1-416-gd5459b9).
* t/txinfo-dvi-recurs.sh: Remove, basically an obsolete grepping
test (as was the test 'txinfo10.sh' this was renamed from; see
[ng] commit
v1.12.2-887-gb80d8d2).
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
{
set_strictness ($_);
}
- # TODO: Remove this special check in Automake 1.14 or 1.15.
- elsif (/^(.*\/)?ansi2knr$/)
- {
- # Obsolete (and now removed) de-ANSI-fication support.
- error ($where,
- "automatic de-ANSI-fication support has been removed");
- }
+ # TODO: Remove this special check in Automake 1.15.
elsif ($_ eq 'cygnus')
{
error $where, "support for Cygnus-style trees has been removed";
END
cat > Makefile.am << 'END'
- info_TEXINFOS = textutils.texi
- .PHONY: test
- test:
+ info_TEXINFOS = textutils.texi subdir/main.texi
+ test: distdir
- @echo DISTFILES = $(DISTFILES)
- @case '$(DISTFILES)' in *'~'*|*'.bak'*) exit 1;; *) exit 0;; esac
- st=0; \
+ @echo am.dist.all-files = $(am.dist.all-files)
- case '$(am.dist.all-files)' in *'~'*) exit 1;; *) exit 0;; esac
++ @case '$(am.dist.all-files)' in \
++ *'~'*|*'.bak'*) exit 1;; \
++ *) exit 0;; \
++ esac
++ @st=0; \
+ find $(distdir) | grep '~' && st=1; \
+ find $(distdir) | grep '\.bak' && st=1; \
+ exit $$st
+ PHONY: test
END
: > texinfo.tex