diff options
author | Alexandre Duret-Lutz <adl@gnu.org> | 2003-11-11 00:07:17 +0000 |
---|---|---|
committer | Alexandre Duret-Lutz <adl@gnu.org> | 2003-11-11 00:07:17 +0000 |
commit | 526a21cd537d078e36b4a95065136c116b942396 (patch) | |
tree | b12269089937713360e5ded2b9430d5fcb2201fe /tests | |
parent | a5e1b42a6f8149fb67950a07f635476c504f478a (diff) | |
download | automake-526a21cd537d078e36b4a95065136c116b942396.tar.gz |
* doc/automake.texi (Texinfo): Define MAKEINFO, MAKEINFOHTML,
MAKEINFOFLAGS, AM_MAKEINFOFLAGS, AM_MAKEINFOHTMLFLAGS, TEXI2DVI,
TEXI2PDF, DVIPS, and TEXINFO_TEX in a table.
(Uniform): Do not speak of missing HTML support, this is
confusing.
* lib/Automake/Variable.pm (_silent_variable_override): Add
AM_MAKEINFOHTMLFLAGS.
* lib/am/texibuild.am (%SOURCE_SUFFIX%.html): Use MAKEINFOHTML and
AM_MAKEINFOHTMLFLAGS instead of MAKEINFO and AM_MAKEINFOFLAGS.
* lib/am/texinfos.am (MAKEINFOHTML, AM_MAKEINFOHTMLFLAGS): Define.
* tests/txinfo21.test: Add a test with AM_MAKEINFOHTMLFLAGS.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/txinfo21.test | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/txinfo21.test b/tests/txinfo21.test index 9c2b957f0..44e7177af 100755 --- a/tests/txinfo21.test +++ b/tests/txinfo21.test @@ -80,3 +80,19 @@ $MAKE clean test ! -f main.html test ! -f sub/main.html test ! -f rec/main.html + +# Make sure AM_MAKEINFOHTMLFLAGS is supported, and override AM_MAKEINFO. +cat >>Makefile.am <<\EOF +AM_MAKEINFOHTMLFLAGS=--no-split +AM_MAKEINFOFLAGS=--unsupported-option +EOF +$AUTOMAKE +./configure +$MAKE html +test -f main.html +test -f sub/main.html +test -d rec/main.html +$MAKE clean +test ! -f main.html +test ! -f sub/main.html +test ! -d rec/main.html |