From: Alexandre Duret-Lutz Date: Mon, 25 Oct 2004 18:59:54 +0000 (+0000) Subject: * doc/automake.texi: Untabify, tabs in the examples are poorly X-Git-Tag: Release-1-9b~272 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3cd9f6d6c1a15a45c69bbbc245500f5c439e0e2;p=thirdparty%2Fautomake.git * doc/automake.texi: Untabify, tabs in the examples are poorly rendered. * Makefile.am (maintainer-check): Grep tabs in the manual. --- diff --git a/ChangeLog b/ChangeLog index 29bd04f05..ba4ae6e71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2004-10-25 Alexandre Duret-Lutz + * doc/automake.texi: Untabify, tabs in the examples are poorly + rendered. + * Makefile.am (maintainer-check): Grep tabs in the manual. + * tests/comment8.test: Use $MAKE, not make. 2004-10-24 Alexandre Duret-Lutz diff --git a/Makefile.am b/Makefile.am index ea0583c8b..6bffc9f05 100644 --- a/Makefile.am +++ b/Makefile.am @@ -260,7 +260,7 @@ maintainer-check: automake aclocal fi @if grep ' ' $(srcdir)/doc/automake.texi; then \ echo 'Do not use tabs in the manual.' 1>&2; \ - exit 1; + exit 1; \ fi diff --git a/Makefile.in b/Makefile.in index 55aa61665..b9af660ac 100644 --- a/Makefile.in +++ b/Makefile.in @@ -768,7 +768,7 @@ maintainer-check: automake aclocal fi @if grep ' ' $(srcdir)/doc/automake.texi; then \ echo 'Do not use tabs in the manual.' 1>&2; \ - exit 1; + exit 1; \ fi cvs-dist: maintainer-check diff --git a/doc/automake.texi b/doc/automake.texi index 43f920b1f..9a8f7396f 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -34,7 +34,7 @@ published by the Free Software Foundation raise funds for @dircategory Software development @direntry -* automake: (automake). Making Makefile.in's. +* automake: (automake). Making Makefile.in's. @end direntry @dircategory Individual utilities @@ -3849,44 +3849,44 @@ possible to link two @code{yacc} parsers into the same executable. We recommend using the following renaming hack used in @code{gdb}: @example -#define yymaxdepth c_maxdepth -#define yyparse c_parse -#define yylex c_lex -#define yyerror c_error -#define yylval c_lval -#define yychar c_char -#define yydebug c_debug -#define yypact c_pact -#define yyr1 c_r1 -#define yyr2 c_r2 -#define yydef c_def -#define yychk c_chk -#define yypgo c_pgo -#define yyact c_act -#define yyexca c_exca +#define yymaxdepth c_maxdepth +#define yyparse c_parse +#define yylex c_lex +#define yyerror c_error +#define yylval c_lval +#define yychar c_char +#define yydebug c_debug +#define yypact c_pact +#define yyr1 c_r1 +#define yyr2 c_r2 +#define yydef c_def +#define yychk c_chk +#define yypgo c_pgo +#define yyact c_act +#define yyexca c_exca #define yyerrflag c_errflag -#define yynerrs c_nerrs -#define yyps c_ps -#define yypv c_pv -#define yys c_s -#define yy_yys c_yys -#define yystate c_state -#define yytmp c_tmp -#define yyv c_v -#define yy_yyv c_yyv -#define yyval c_val -#define yylloc c_lloc -#define yyreds c_reds -#define yytoks c_toks -#define yylhs c_yylhs -#define yylen c_yylen +#define yynerrs c_nerrs +#define yyps c_ps +#define yypv c_pv +#define yys c_s +#define yy_yys c_yys +#define yystate c_state +#define yytmp c_tmp +#define yyv c_v +#define yy_yyv c_yyv +#define yyval c_val +#define yylloc c_lloc +#define yyreds c_reds +#define yytoks c_toks +#define yylhs c_yylhs +#define yylen c_yylen #define yydefred c_yydefred -#define yydgoto c_yydgoto +#define yydgoto c_yydgoto #define yysindex c_yysindex #define yyrindex c_yyrindex #define yygindex c_yygindex -#define yytable c_yytable -#define yycheck c_yycheck +#define yytable c_yytable +#define yycheck c_yycheck #define yyname c_yyname #define yyrule c_yyrule @end example @@ -5731,7 +5731,7 @@ recursively included by specifying a directory in EXTRA_DIST: EXTRA_DIST = doc dist-hook: - rm -rf `find $(distdir)/doc -name CVS` + rm -rf `find $(distdir)/doc -name CVS` @end example @vindex distdir @@ -7588,7 +7588,7 @@ foo_SOURCES = foo.c dist_man_MANS = foo.1 foo.1: foo$(EXEEXT) - help2man --output=foo.1 ./foo$(EXEEXT) + help2man --output=foo.1 ./foo$(EXEEXT) @end example This will effectively distribute the man page. However, @@ -7628,7 +7628,7 @@ dist_man_MANS = foo.1 foo.1: foo.c $(top_srcdir)/configure.ac $(MAKE) $(AM_MAKEFLAGS) foo$(EXEEXT) - help2man --output=foo.1 ./foo$(EXEEXT) + help2man --output=foo.1 ./foo$(EXEEXT) @end example This way, @file{foo.1} will not get rebuilt every time