Merge branch 'fix-ansi-test-regression-on-aix' into maint
[platform/upstream/automake.git] / ChangeLog
1 2010-11-16  Stefano Lattarini  <stefano.lattarini@gmail.com>
2
3         Fix regression in ansi.test (failure on AIX 5.3).
4         * tests/ansi.test: Remove redundant hackish check done using a
5         hand-postprocessed Makefile.in.  This checs worked by setting
6         the `$(SHELL)' macro on the command line of make, but this is
7         not supported by the AIX 5.3 make implementation.
8         This bug has been lurking for a long time, and was activated by
9         commit v1.11-125-gc1f6cdb "Enable `errexit' shell flag in various
10         tests".  Report by Ralf Wildenhues.
11
12 2010-11-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13
14         tests: avoid '##'-style comments inside recipe commands.
15         * tests/confh.test, tests/confh8.test: Remove
16         double-hash comments from makefile rule commands, they
17         are not part of the Automake API.
18
19 2010-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20
21         tests: work around dash quoting issue in case statements.
22         * tests/color.test, tests/color2.test: Quote variable in case
23         pattern, to avoid skipping tests with dash 0.5.5.1.
24
25 2010-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26
27         Rebuild menus in the manual.
28         * doc/automake.texi: Rebuild menus (using ^C ^U ^A in emacs).
29         Thanks to Ian Lance Taylor for the suggestion.
30
31         Fix install-strip when $(STRIP) contains several words.
32         * lib/am/install.am (install-strip): Update comment.  Use
33         separate sub-make invocations for empty and nonempty $(STRIP),
34         to fix quoting issues.
35         * tests/strip2.test, tests/strip3.test: New tests.
36         * tests/Makefile.am (TESTS): Adjust.
37
38 2010-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39
40         Fix yaccdry.test failure: require bison.
41         * tests/yaccdry.test: Require bison.
42         Found by NixOS Hydra.
43
44 2010-11-07  Stefano Lattarini  <stefano.lattarini@gmail.com>
45
46         Fix a bug in variable concatanation with `+='.
47         * lib/Automake/VarDef.pm (append): Since the content of the
48         "appended-to" variable is going to be unconditionally normalized
49         later, simply separate the appended value with a single whitespace
50         character, instead of trying to be uselesssly smarter by using
51         escaped newlines.  This fixes a bug in which extra backslashes
52         where erroneously inserted in the variable's final value.
53         * tests/pluseq11.test: New test, exposing the bug.
54         * tests/Makefile.am (TESTS): Update.
55         Reported by Andy Wingo.
56
57 2010-11-06  Stefano Lattarini  <stefano.lattarini@gmail.com>
58
59         Fix bug in rules for creating vala vapi/header files.
60         * automake.in (lang_vala_finish_target): Add forgotten "fi" in an
61         if control structure in a generated make rules.  Bug introduced
62         by previous commit `v1.11-221-gd7c1679', and revealed by failure
63         of test `vala2.test'.
64
65 2010-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
66
67         Fix and document rules to not touch the tree with `make -n'.
68         * doc/automake.texi (Multiple Outputs): Document the problem of
69         modifications during dry-run execution, propose solution.
70         * NEWS: Update.
71         * automake.in (lang_vala_finish_target): Split recipe so the
72         stamp file is not removed with GNU `make -n'.
73         (lang_yacc_target_hook): Separate removal of parser output file
74         and header remaking.
75         * lib/am/lisp.am ($(am__ELCFILES)): Determine whether -n was
76         passed to make, take care not to remove any files in that case.
77         * lib/am/remake-hdr.am (%CONFIG_H%): Separate removal of
78         %STAMP% file from induced remaking of config header.
79         * tests/autohdrdry.test, tests/lispdry.test, tests/yaccdry.test:
80         New tests.
81         * tests/Makefile.am (TESTS): Update.
82
83 2010-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
84
85         Add FAQ entry for bug reporting instructions.
86         * doc/automake.texi (Reporting Bugs): New section.
87         (Introduction): Refer to it.
88
89 2010-10-04  Stefano Lattarini  <stefano.lattarini@gmail.com>
90
91         Add support for newer python versions.
92         * m4/python.m4 (AM_PATH_PYTHON): Add python2.7 and python3.2 to
93         _AM_PYTHON_INTERPRETER_LIST.  Since we are at it, break a long
94         line and fix indentation.
95         * THANKS: Updated.
96         From a report by Thomas Klausner.
97
98         Add test for `AM_WITH_DMALLOC' macro.
99         * tests/dmalloc.test: New test.
100         * tests/Makefile.am (TESTS): Update.
101
102         Fix nits and bugs in tests `help*.test'.
103         * tests/help4.test: Fix broken sed commands used to strip `-W...'
104         flags away from "$AUTOMAKE" and "$ACLOCAL".
105         * tests/help3.test: Likewise, and fix a botched comment.
106         * tests/help.test: Likewise.  Also, use "AUTOMAKE_fails ..."
107         instead of "$AUTOMAKE ... && Exit 1", for consistency and to
108         please maintainet-check.
109         * tests/help2.test: Likewise.
110
111 2010-10-03  Stefano Lattarini  <stefano.lattarini@gmail.com>
112             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
113
114         Improve tests `help*.test' (also fixes maintcheck failures).
115         * tests/help.test: To run automake, use `$AUTOMAKE' with all `-W'
116         flags stripped away rather than hard-coded `automake-$APIVERSION',
117         to better honour user-overrides.  Similarly for aclocal.
118         * tests/help2.test: Likewise.
119         * tests/help3.test: Likewise.
120         * tests/help4.test: Likewise.
121
122 2010-10-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
123
124         Document and fix expansion of variables before rules.
125         * doc/automake.texi (General Operation): Document that variables
126         are expanded before rules.
127         * lib/am/check.am (am__check_post): Reword a bit so it does not
128         get matched as a rule.
129         Suggestion by Ben Pfaff.
130
131 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
132
133         Revert "parallel-tests: avoid command-line length limit issue."
134         This reverts commit 24e3b4ee2f8cb9f72dd94a05a893f3d4e88b7835,
135         because it re-opened the bug fixed by v1.11-10-g218e678.
136
137         2010-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
138
139         parallel-tests: avoid command-line length limit issue.
140         * automake.in (handle_tests): New argument $makefile, new
141         substitution %MAKEFILE%.
142         (generate_makefile): Adjust.
143         * lib/am/check.am [%?PARALLEL_TESTS%] (check-TESTS): Pass
144         sanitized TEST_LOGS value as makefile snippet on standard
145         input to $(MAKE), to avoid exceeding the command line limit on
146         w32 (MSYS).
147         * NEWS: Update.
148         Report by Bob Friesenhahn.
149
150 2010-09-26  Stefano Lattarini  <stefano.lattarini@gmail.com>
151
152         Extend tests on `--help' and `--version' options.
153         * tests/help.test: Create a new empty directory and chdir into
154         it, rather than removing already present files.  Run the aclocal
155         and automake wrapper scripts directly, instead of relying on
156         $AUTOMAKE and $ACLOCAL.  Be sure to correctly match literal dots
157         in aclocal's and automake's stderr.  Add a trailing `:' command.
158         * tests/help2.test: New test, checking that options `--help' and
159         `--version' works in directories with broken `configure.in'.
160         * tests/help3.test: New test, checking that options `--help' and
161         `--version' take precedence on the other options.
162         * tests/help4.test: New test, checking that the first among the
163         `--help' and `--version' options to be specified on the command
164         line wins.
165         * tests/Makefile.am (TESTS): Updated.
166
167 2010-09-25  Stefano Lattarini  <stefano.lattarini@gmail.com>
168
169         Testsuite: Use `$PATH_SEPARATOR', not `:', when extending PATH.
170         * tests/compile2.test: Do no uselessly (implicitly) repeat the
171         computation of PATH_SEPARATOR again.
172         * tests/instmany-mans.test: Use `$PATH_SEPARATOR', not `:', when
173         extending/redefining PATH.
174         * tests/instmany-python.test: Likewise.
175         * tests/instmany.test: Likewise.
176         * tests/man4.test: Likewise.
177         * tests/mkinst3.test: Likewise.
178         * tests/mmodely.test: Likewise.
179         * tests/multlib.test: Likewise.
180         * tests/txinfo30.test: Likewise.
181         * tests/README (Section "Writing test cases" subsection "Do"):
182         Updated.
183         * Makefile.am (sc_tests_PATH_SEPARATOR): New maintainer check.
184         (syntax_check_rules): Updated.
185
186         Testsuite: new variables `$PATH_SEPARATOR' and `$APIVERSION'.
187         * tests/defs.in ($APIVERSION):  New AC_SUBST'd variable.
188         ($ACLOCAL, $AUTOMAKE): Use it.
189         ($PATH_SEPARATOR):  New AC_SUBST'd variables.
190         ($PATH): Use it.
191
192 2010-09-22  Stefano Lattarini  <stefano.lattarini@gmail.com>
193
194         Manual: be more agnostic w.r.t. version control system used.
195         * doc/automake.texi (Basics of Distribution): Also refer to `.svn'
196         directories as a type of probably-unwanted files that are copied
197         regardless when adding directories to EXTRA_DIST.
198         (The dist Hook): Show a dist-hook example which removes Subversion
199         `.svn' private directories from distdir, rather than CVS private
200         directories.
201         (missing and AM_MAINTAINER_MODE): Try to be more agnostic w.r.t.
202         the version control system used.
203
204         Manual: index refer to target "git-dist", not "cvs-dist".
205         * doc/automake.texi (General Operation): Index the non-standard
206         example about "git-dist" under the "git-dist" label, not under
207         the "cvs-dist" one.
208
209         Perl modules: remove references to "Automake CVS repository".
210         * lib/Automake/Channels.pm: Update comments to refer to "Automke's
211         git repository" rather than to "Automake's CVS repository".
212         * lib/Automake/Configure_ac.pm: Likewise.
213         * lib/Automake/FileUtils.pm: Likewise.
214         * lib/Automake/Struct.pm: Likewise.
215         * lib/Automake/XFile.pm: Likewise.
216         * lib/Automake/Version.pm (=head1 DESCRIPTION): Refer to "git
217         branches" rather than "CVS branches".
218
219         Remove obsolete .cvsignore files.
220         * .cvsignore, doc/.cvsignore, lib/.cvsignore, lib/am/.cvsignore,
221         lib/Automake/.cvsignore, lib/Automake/tests/.cvsignore,
222         m4/.cvsignore, tests/.cvsignore: Files deleted.  Even when using
223         savannah's CVS readonly mirror there's no way to commit back to
224         the real repository, so this files are not worth maintaining or
225         keeping around.
226
227 2010-09-21  Stefano Lattarini  <stefano.lattarini@gmail.com>
228
229         * m4/dmalloc.m4: Bump serial number and copyright years.
230
231 2010-09-20  Stefano Lattarini  <stefano.lattarini@gmail.com>
232
233         Fix broken link in `AM_WITH_DMALLOC' help screen.
234         * m4/dmalloc.m4 (AM_WITH_DMALLOC): Refer only to the dmalloc site
235         `http://www.dmalloc.com', not to the dmalloc tarball there (which
236         seems to have been removed, substituted by multiple release
237         tarballs now).
238
239 2010-09-17  Eric Blake  <eblake@redhat.com>
240
241         Avoid triple-space after period.
242         * automake.in (handle_single_transform): Avoid 3 spaces at
243         sentence end.
244         * ChangeLog.03: Likewise.
245         * lib/Automake/ChannelDefs.pm: Likewise.
246         * lib/Automake/Channels.pm (_print_message): Likewise.
247         * lib/Automake/Rule.pm (rule): Likewise.
248         * lib/Automake/Variable.pm (var): Likewise.
249         * lib/am/distdir.am: Likewise.
250         * tests/insthook.test: Likewise.
251
252 2010-09-15  Stefano Lattarini  <stefano.lattarini@gmail.com>
253
254         Test automake-generated portions of configure help screen.
255         * tests/help-depend.test: New test.
256         * tests/help-depend2.test: Likewise.
257         * tests/help-dmalloc.test: Likewise.
258         * tests/help-init.test: Likewise.
259         * tests/help-lispdir.test: Likewise.
260         * tests/help-maintainer.test: Likewise.
261         * tests/help-multilib.test: Likewise.
262         * tests/help-regex.test: Likewise.
263         * tests/help-silent.test: Likewise.
264         * tests/help-upc.test: Likewise.
265         * tests/mmode.test: Remove tests on `configure --help' output,
266         they are supersed by tests in `help-maintainer.test'.
267         * tests/Makefile.am (TESTS): Update.
268
269 2010-09-14  Stefano Lattarini  <stefano.lattarini@gmail.com>
270
271         * tests/README: Don't put GCS mandated tools in $required.
272
273 2010-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
274
275         * HACKING: Hint at old commits with `git describe' output.
276
277 2010-09-12  Stefano Lattarini  <stefano.lattarini@gmail.com>
278
279         Fix regression in test `colon4.test'.
280         * tests/colon4.test: Fix botched editing to `configure.in'
281         that made the test useless.  Since we are at it, improve
282         comments and make grepping of generated Makefile.in slighty
283         stricter.
284         Regression introduced by change "Modernize, improve and/or
285         extend tests `colon*.test" (Stefano Lattarini, 2010-08-08).
286
287 2010-09-08  Stefano Lattarini  <stefano.lattarini@gmail.com>
288
289         Do not require "gzip" explicitly in tests.
290         The gzip utility is simply expected to be present on any decent
291         target system for Automake.  So it's pointless to put it in
292         $required.
293         * tests/install2.test ($required): Do not require "gzip".
294         * tests/lex3.test: Likewise.
295         * tests/pr9.test: Likewise.
296         From a suggestion by Ralf Wildenhues.
297
298         Make some `confh*.test' tests more "semantic" (plus tweakings).
299         * tests/confh.test: Run "autoconf", "configure" and "make check",
300         instead of munging/grepping the generated `Makefile.in'.
301         * tests/confh4.test: Relax the grepping of Makefile.in w.r.t.
302         white spaces.  Do not create usless dummy source file `foo.c'
303         and useless dummy header file `acconfig.h'.
304         (configure.in): Remove superfluous call to `AC_OUTPUT'.
305         * tests/confh6.test: Add trailing `:' command.
306         * tests/confh7.test: In comments, add reference to ...
307         * tests/confh8.test: ... this new test, "semantic" sister
308         of `confh7.test'.
309         * tests/Makefile.am (TESTS): Updated.
310         Prompted by a report from Ralf Wildenhues.
311
312         Remove useless whitespace padding in XFAIL_TESTS definition.
313         * tests/Makefile.am (XFAIL_TESTS): Remove whitespace padding.
314
315 2010-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
316
317         parallel-tests: avoid command-line length limit issue.
318         * automake.in (handle_tests): New argument $makefile, new
319         substitution %MAKEFILE%.
320         (generate_makefile): Adjust.
321         * lib/am/check.am [%?PARALLEL_TESTS%] (check-TESTS): Pass
322         sanitized TEST_LOGS value as makefile snippet on standard
323         input to $(MAKE), to avoid exceeding the command line limit on
324         w32 (MSYS).
325         * NEWS: Update.
326         Report by Bob Friesenhahn.
327
328         Posix 2008 requires make to set errexit.
329         * lib/am/check.am: Update comment.
330
331 2010-08-27  Stefano Lattarini  <stefano.lattarini@gmail.com>
332
333         Fix bug in test missing6.test.
334         * tests/missing6.test: Fix the hack used to edit `configure.in',
335         to avoid producing a configure script that breaks with shells
336         that do not support $LINENO.  Also throw in a couple of cosmetic
337         changes.
338
339 2010-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
340
341         Improve robustness of mdate-sh script.
342         * lib/mdate-sh: Sanitize zsh behavior on startup, to ensure
343         $ls_command is word-split properly upon invocation.
344         (error): New function.
345         (main): Use it.  Improve error checking to avoid endless loop
346         in case $ls_command gave bogus output.  Fix eval quotation.
347         * tests/mdate6.test: New test, to expose eval quotation error.
348         * tests/Makefile.am: Update.
349
350 2010-08-18  Stefano Lattarini  <stefano.lattarini@gmail.com>
351
352         Fix potential regressions in depcomp{3,5}.test.
353         * tests/depcomp3.test: Do not uselessly escape the character `$'
354         in makefile rules, when it's used to expand a make macro.
355         * tests/depcomp5.test: Likewise.
356
357 2010-08-17  Stefano Lattarini  <stefano.lattarini@gmail.com>
358             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
359
360         Docs: clarify how to avoid automatic dependencies tracking.
361         * doc/automake.texi (Automatic dependency tracking): Mention that
362         automatic dependencies tracking is enabled by default, but that
363         the package developer can disable it altogether.  Add a reference
364         to the proper section for a more in-depth explanation.
365
366         Fix typo in manual (`Makefile.in' instead of `Makefile.am').
367         * doc/automake.texi (Automatic dependency tracking): Fix typo.
368
369 2010-08-16  Bruno Haible  <bruno@clisp.org>
370
371         Don't hide the table of contents.
372         * doc/automake.texi: Move the table of contents to the beginning.
373
374 2010-08-10  Stefano Lattarini  <stefano.lattarini@gmail.com>
375
376         Tweak and/or extend some `acloca*.test' tests.
377         * tests/aclocal8.test:  Ensure verbose printing of captured
378         output.
379         * tests/aclocal.test: Likewise.  Also, add trailing `:'
380         command.
381         * tests/acloca19.test: Likewise.
382         * tests/aclocal5.test: Add trailing `:' command, and prefer
383         `$me' over hard-coded test name.
384         * tests/aclocal6.test: Likewise.
385         * tests/aclocal18.test: Add trailing `:' command, and make
386         some grepping slighty stricter.
387         * tests/acloca14.test: Likewise.  Also, prefer `diff' over
388         `cmp', and add some "cosmetic" blank lines.
389
390 2010-08-09  Stefano Lattarini  <stefano.lattarini@gmail.com>
391
392         Tweak and extend tests `pr[!0-9]*.test'.
393         * tests/primary3.test: Add trailing `:' command.
394         * tests/primary.test: Make grepping of Automake's stderr stricter.
395         Also, add trailing `:' command, and cosmetic changes in spacing.
396         * tests/primary2.test: Likewise.
397         * tests/prefix.test: Enable `errexit' shell flags, and related
398         changes.  Add a trailing `:' command.
399         * tests/proginst.test: Likewise.
400
401         Modernize, improve and extend tests for PR (`pr[0-9]*.test').
402         * tests/pr2.test: Add trailing `:' command.
403         * tests/pr229.test: Likewise.
404         * tests/pr401.test: Likewise.
405         * tests/pr401b.test: Likewise.
406         * tests/pr401c.test: Likewise.
407         * tests/pr300-prog.test: Likewise, plus cosmetic changes in
408         spacing.
409         * tests/pr300-lib.test: Likewise.
410         * tests/pr300-ltlib.test: Likewise, and ensure verbose printing
411         of captured make stdout.
412         * tests/pr211.test: Add trailing `:' command.  Also, use the
413         `configure.in' stub created by ./defs, rather than writing it
414         from scratch.
415         * tests/pr204.test: Likewise, plus cosmetic spacing changes.
416         * tests/pr287.test: Likewise, and move setting of `errexit' shell
417         flag earlier in the script (just after inclusion of ./defs).
418         * tests/pr220.test: Make grepping of Automake's stderr stricter.
419         Also, add trailing `:' command, and cosmetic changes in spacing.
420         * tests/pr224.test: Move setting of `errexit' shell flag earlier
421         in the script (just after inclusion of ./defs).  Do not export
422         `CC=gcc' to configure explicitly (it's already exported globally
423         in ./defs, since we have "gcc" in $required).  Use the stub for
424         `configure.in' created by ./defs, rather than writing it from
425         scratch.  Do not create dummy files required by "gnu" mode (e.g.
426         README, NEWS), since we run automake in foreign mode anyway.
427         * tests/pr72.test: Enable `errexit' shell flags, and related
428         changes.  Extend existing checks a bit.
429         * tests/pr9.test: Likewise.  Also, avoid obolescent constructs in
430         the generated `configure.in', and extend existing checks over the
431         generated tarball a bit.
432         * tests/pr87.test: Enable `errexit' shell flags, and related
433         changes.  Add a trailing `:' command.  Also, do not create dummy
434         files required by "gnu" mode (e.g. README, NEWS), since we run
435         automake in foreign mode anyway.
436         * tests/pr243.test: Avoid obolescent constructs in the generated
437         `configure.in'.  Enable the `errexit' shell flag, and related
438         changes.  Cosmetic changes to spacing, add trailing `:' command,
439         and add a "FIXME" comment.
440         * tests/pr266.test: Likewise, and add explicit command line switch
441         `--enable-dependecy-tracking' to the ./configure call.
442         * tests/pr279.test: Avoid obolescent constructs in the generated
443         `configure.in'; also, use the `configure.in' stub created by
444         ./defs, rather than writing it from scratch.  Enable `errexit'
445         shell flag, and related changes.  Add trailing `:' command.
446         * tests/pr279-2.test: Likewise, and make grepping of Makefile.in
447         stricter.
448         * tests/pr307.test: Move setting of `errexit' shell flag earlier
449         in the script (just after inclusion of ./defs).  Escape literal
450         dots in grep regular expressions.  Also, add a trailing `:'
451         command, and cosmetic changes to spacing.
452
453         Tests for PR: add excerpts from original bug report, for clarity.
454         * tests/pr2.test: Ditto.
455         * tests/pr9.test: Likewise.
456         * tests/pr72.test: Likewise.
457         * tests/pr87.test: Likewise.
458         * tests/pr211.test: Likewise.
459         * tests/pr220.test: Likewise.
460         * tests/pr224.test: Likewise.
461         * tests/pr229.test: Likewise.
462         * tests/pr243.test: Likewise.
463         * tests/pr266.test: Likewise.
464         * tests/pr279.test: Likewise, and tell to keep it in sync
465         with its sister test.
466         * tests/pr279-2.test: Likewise.
467
468 2010-08-08  Stefano Lattarini  <stefano.lattarini@gmail.com>
469
470         Tweak, extend and improve tests `cond[a-z]*.test'.
471         * tests/condd.test: Add trailing `:' command.  Typofix in
472         comment.
473         * tests/condhook.test: Make sure target `install-data-hook' is
474         not called by `make install', but that data files are installed.
475         Use proper m4 quoting in configure.in. Add trailing `:' command.
476         * tests/condhook2.test: New test, sister test of condhook, with
477         inverted semantic.
478         * tests/condinc2.test: Use proper m4 quoting in configure.in.
479         Prefer trailing `:' command over trailing `Exit 0'.
480         * tests/condman2.test: Enable errexit shell flag, and related
481         changes.  Add trailing `:' command.
482         * tests/condman.test: Likewise.  Also, do not create useless
483         dummy manpages, and use proper m4 quoting in configure.in.
484         * tests/condman3.test: New test, similar to condman.test, but
485         it also runs ./configure and "make install", and check the
486         installed files.
487         * tests/Makefile.am (TESTS): Updated.
488
489         Modernize, improve and/or extend tests `colon*.test.
490         * tests/colon.test: Rely on the `configure.in' stub created by
491         `./defs', rather than writing one from scratch.  Do not create
492         a useless dummy file.  Add trailing `:' command.
493         * tests/colon4.test: Enable the `errexit' shell flag, and
494         related changes.  Rely on the `configure.in' stub created by
495         `./defs', rather than writing one from scratch.
496         * tests/colon7.test: Enable `errexit' shell flag, and related
497         changes.  Improve the generated `configure.in' file.  Add
498         trailing `:' command.
499         * tests/colon2.test: Likewise.  Also, add some new checks.
500         * tests/colon5.test: Improve the generated `configure.in' file.
501         Add new, much deeper checks.  Add trailing `:' command.
502         * tests/colon6.test: Likewise.
503         * tests/colon3.test: Add trailing `:' command.  Remove useless
504         comments and echos.  Improve the generated `configure.in' file.
505         make some grepping tests stricter.  Add a "FIXME" comments about
506         planned improvements.
507
508         Improve and extend tests `asm*.test'.
509         * tests/asm.test: Use configure.in stub generated by ./defs,
510         and avoid obsoleted autoconf constructs.  Make grepping of
511         Automake stderr stricter.  Do not create useless source file.
512         Improve verbose messages.  Minor cosmetic changes.  Tell to
513         keep it in sync with other sister tests asm*.test.
514         * tests/asm2.test: Likewise.
515         * tests/asm3.test: Likewise.
516
517         Modernize, improve and/or extend test scripts `conf*.test'.
518         * tests/confh5.test: Cosmetic changes.
519         * tests/conff.test: Likewise.
520         * tests/confdeps.test: Likewise.
521         * tests/conflnk.test: Likewise.
522         * tests/conflnk2.test: Likewise.
523         * tests/confsub.test: Likewise.
524         * tests/confvar.test: Likewise, and make grepping of Makefile.in
525         stricter.
526         * tests/confvar2.test: Likewise.
527         * tests/conflnk3.test: Cosmetic changes, and re-enable a temporarly
528         disabled test (which didn't work with autoconf <= 2.59, but now we
529         are requiring autoconf 2.62, so...)
530         * tests/conflnk4.test: Cosmetic changes, and extend existing tests
531         accordingly to "TODO" comments.
532         * tests/conff2.test: Make grepping of Automake's stderr stricter.
533         Add some comments explaining why we don't use the `configure.in'
534         stub preset be ./defs.
535         * tests/confh.test: Use the `configure.in' stub created by ./defs,
536         rather than writing one from scratch, and do not call AC_OUTPUT.
537         Enable `errexit' shell flag, and related changes.  Prefer diff over
538         cmp to compare text files. Prefer perl over sed to fetch the value
539         of $(DIST_COMMON) from Makefile.in.  Make grepping of the contents
540         of $(DIST_COMMON) stricter.
541         * tests/confh4.test: Use the `configure.in' stub created by ./defs,
542         rather than writing one from scratch.  Make grepping of Makefile.in
543         stricter.
544         * tests/confh5.test: Make grepping of `config.h' stricter.  Add a
545         comment.
546         * tests/configure.test: Avoid obsolescent constructs in generated
547         `configure.ac'.  Do not write `configure.in' two times.  Escape
548         literal dots in grep regular expressions.
549         * tests/confincl.test:  Enable `errexit' shell flag, and related
550         changes.  Prefer fgrep over grep.  Other cosmetic changes.
551         * tests/config.test: Renamed to ...
552         * tests/confh6.test: ... this.  Fix m4 quoting in `configure.in',
553         and make grepping of `config.h' and `config.h.in' stricter.
554         * tests/conf2.test: Renamed ...
555         * tests/confh7.test: ... to this.  Use the `configure.in' stub
556         created by ./defs, rather than writing one from scratch.  Try to
557         run the checks both with and without AC_PROG_CC and AC_OUTPUT in
558         `configure.in'.
559         * tests/Makefile.am (TESTS): Updated.
560
561         Minor improvements and fixes in tests `depcomp*.test'.
562         * tests/depcomp.test: Do not create useless dummy source files.
563         Add a trailing `:' command.
564         * tests/depcomp2.test: Use `unset' on the CFLAG variable to ensure
565         it's not in in the environment, rather tthan exporting it with an
566         empty value.  Do not pass CC=gcc to configure, as that's already
567         done in ./defs since we have gcc in $required.  Ensure verbose
568         printing of captured stderr, and normalize its checking.  Add a
569         trailing `:' command.
570         * tests/depcomp3.test: Quote literal dots and dollar characters in
571         grep regexps.  Always use `: >' rather than `touch' to create empty
572         files.  Explicitly declare phony targets as such in the created
573         Makefile.am.  Add a trailing `:' command.
574         * tests/depcomp4.test: Quote literal dots and dollar characters in
575         grep regexp.  Explicitly declare phony targets as such in the
576         created Makefile.am.  Ensure verbose printing of captured makes'
577         stoud/stderr.  Add a trailing `:' command.
578         * tests/depcomp5.test: Move setting of `errexit' shell flag earlier
579         in the script (just after inclusion of ./defs).  Quote literal dots
580         and dollar characters in grep regexps.  Explicitly declare phony
581         targets as such in the created Makefile.am.  Add a trailing `:'
582         command.
583         * tests/depcomp6.test: Consistenty use m4 quoting in the generated
584         configure.in.  Cosmetic fixes to spacing.  Make the "dummy" `if'
585         statement required by OpenBSD's sh `set -e' more robust, and add
586         explanatory comments to it.
587         * tests/depcomp7.test: Likewise, and add  a trailing `:' command.
588
589         Separate failing part of test `all.test'.
590         * tests/all.test: Keep only (x)failing part of the test.  Working
591         checks moved out to ...
592         * tests/all2.test: ... this new test.
593         * tests/Makefile.am (TESTS): Updated.
594
595         Modernize, improve and extend tests `subobj*.test'.
596         * tests/subobjname.test:  Add trailing `:' command.
597         * tests/subobj.test: Make grepping of `Makefile.in' stricter.
598         Escape literal dots in grep regexps.
599         * tests/subobj2.test:  Add trailing `:' command.  Do not use the
600         unportable fgrep option `-e'.
601         * tests/subobj3.test: Add trailing `:' command.
602         (configure.in): Use proper m4 quoting, and avoid obsolescent
603         constructs.
604         * tests/subobj8.test: Likewise.  Also, enable `errexit' shell
605         flag, with related changes
606         * tests/subobj4.test: Likewise.  Also, make grepping of
607         `Makefile.in' stricter.
608         * tests/subobj5.test: Add trailing `:' command.  Move setting of
609         `errexit' shell flag earlier in the script (just after inclusion
610         of ./defs).
611         (configure.in): Use the stub created by `./defs', rather than
612         writing it from scratch, and avoid obsolescent constructs.
613         * tests/subobj6.test: Add trailing `:' command.  Move setting of
614         `errexit' shell flag earlier in the script (just after inclusion
615         of ./defs).  Do not create useless dummy ac-init file `f'.
616         * tests/subobj7.test: Do not create useless dummy ac-init file
617         `f'.
618         (configure.in): Use the stub created by `./defs', rather than
619         writing it from scratch, and avoid obsolescent constructs.
620         * tests/subobj9.test: Move setting of `errexit' shell flag earlier
621         in the script (just after inclusion of ./defs).  Fail the test if
622         `make distcheck' fails.  Ensure verbose printing of captured make
623         stdout.  Avoid uselsss fork by doing simple grep instead of using
624         test -n "`COMMAND | grep ...`".
625         (configure.in): Normalize the call to AC_INIT w.r.t. other tests.
626         (Makefile.am): Explicitly mark target "print" as phony.
627         * tests/subobj10.test: Removed duplicated call to `set -e'.  Add
628         trailing `:' command.
629         (configure.in): Normalize the call to AC_INIT w.r.t. other tests.
630
631         Remove a couple of obsoleted tests.
632         * tests/fpinstall.test: Removed.
633         * tests/fpinst2.test: Likewise.
634         * tests/Makefile.am (TESTS): Updated.
635
636         Bootstrap: updated HACKING entry.
637         * HACKING ("Working with git"): Explain how to override the
638         autoconf and autom4te programs used by the bootstrap process.
639
640         Bootstrap: fixlet.
641         * bootstrap: Do not remove `lib/Automake/Config.pm' anymore,
642         since we don't generate it.  Correctly quote arguments of
643         `eval' builtin.  Fixed a botched error message.  Removed an
644         extra blank line.
645
646         Bootstrap: don't search perl in $PATH.
647         * bootstrap: Do not explicitly search perl in $PATH anymore.
648         ($PATH_SEPARATOR): Removed, it's no more needed.
649
650         Bootstrap: let the user choose which autoconf to use.
651         * bootstrap ($AUTOCONF): New variable, from the environment.
652         ($AUTOM4TE): Likewise, for clarity.
653         Use "$AUTOCONF" instead of calling "autoconf" directly.
654
655         Minor improvements to tests ar*.test.
656         * tests/ar.test: Add trailing `:' command.
657         * tests/ar2.test: Likewise, and make grepping of generated
658         Makefile.in stricter.
659
660 2010-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
661
662         Fix maintainer-check failure.
663         * tests/cond5.test: Quote sleep argument, this isn't about
664         time stamp differences.
665
666         Sync auxiliary files from upstream.
667         * lib/config.guess, lib/config.sub, lib/texinfo.tex:
668         Sync from upstream.
669
670 2010-08-06  Stefano Lattarini  <stefano.lattarini@gmail.com>
671
672         Work around a nasty bug (segfault) of Solaris make.
673         * lib/am/check.am (recheck, recheck-html): Trim trailing spaces
674         from $list, to avoid triggering a nasty bug (potential segfault)
675         on Solaris make.
676
677 2010-08-06  Peter Rosin  <peda@lysator.liu.se>
678
679         Make cond5.test more robust on MSYS.
680         * tests/cond5.test: Add delay before the first kill attempt to
681         cater for problems with MSYS bash.
682
683 2010-07-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
684
685         Add example git work flow; discuss merge --log in HACKING.
686         * HACKING: Update.
687         Suggestion by Stefano Lattarini.
688
689         Add more hints for debugging make rules.
690         * doc/automake.texi (Debugging Make Rules): Show command to find
691         out expanded values of variables; point to makefile debugger.
692         * THANKS: Update.
693         Prompted by suggestion from Ludovic Courtès and Andy Wingo.
694
695 2010-07-27  Patrick Welche  <prlw1@cam.ac.uk>  (tiny change)
696
697         Fix typo in the manual.
698         * doc/automake.texi (Scripts): Fix typo.
699
700 2010-07-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
701
702         Document current policy for development with git.
703         * HACKING (Working with git): Overhaul.
704         Prompted by suggestion from Stefano Lattarini.
705
706         Fix AM_COND_IF for gone-invalid condition shell expression.
707         * m4/cond-if.m4 (AM_COND_IF): test contents of $COND_TRUE
708         variable, rather than re-evaluating the shell expression for
709         the condition.
710         * tests/cond40.test: Extend test.
711         * NEWS: Update.
712
713         Avoid syntax error if IF-TRUE part of AM_COND_IF expands empty.
714         * m4/cond-if.m4 (AM_COND_IF): Ensure IF-TRUE part is never empty
715         to avoid shell syntax error if the m4 expansion is empty.
716         * tests/cond40.test: Enhance test.
717
718         Coverage: bogus option to AM_INIT_AUTOMAKE.
719         * tests/init2.test: New test.
720         * tests/Makefile.am: Update.
721
722 2010-07-21  Stefano Lattarini  <stefano.lattarini@gmail.com>
723
724         Modernize and improve test scripts `subdir*.test'.
725         * tests/subdir.test: Enable `errexit' shell flag, and related
726         changes.  Use the `configure.in' stub created by `./defs',
727         rather than writing one from scratch.
728         * tests/subdir2.test: Likewise.
729         * tests/subdir4.test: Likewise.
730         * tests/subdir3.test: Enable `errexit' shell flag, and related
731         changes.  Do not create useless dummy source files.
732         * tests/subdir5.test: Make grepping of Makefile.in (in topdir
733         and in subdirs) stricter.  Some minor changes to keep it more
734         in sync with the related test `subdir8.test'.
735         * tests/subdir8.test: Likewise (but with the related test being
736         `subdir5.test' here).
737         * tests/subdir6.test: Cosmetic change in spacing.
738         * tests/subdir9.test: Define and use new variable `$distdir'.  Add
739         trailing `:' command.
740         * tests/subdir10.test: Cosmetic consistency-related change.
741         * tests/subdirbuiltsources.test: Cosmetic changes in spacings.
742         (configure.in): Use stub created by `./defs', rather than writing
743         it from scratch.  Do not use obsoleted and/or deprecated forms of
744         autoconf/automake macros.
745
746         Modernize and improve test scripts `dist*.test'.
747         * tests/distcleancheck.test: Do not add useless `-e' option to
748         a $MAKE call.  Extend test by grepping stderr of make.
749         * tests/distcom2.test: Do not run the same test script on the
750         Makefile.in twice, but save its output in an intermediate file
751         instead.  Make grepping of DIST_COMMON definition stricter.
752         Display the content of more files, to ease debugging.  Add a
753         trailing `:' command.  Improved heading comments w.r.t. sister
754         test(s).
755         * tests/distcom6.test: Likewise, and avoid to uselessly run
756         autoconf.
757         * tests/distcom3.test: Ensure verbose printing of captured stdout
758         and stderr.  Make grepping of captured stderr stricter.  Also,
759         add trailing `:' command.
760         * tests/distcom4.test: Declare the target `test' in the generated
761         Makefile.am as `.PHONY'.  Display content of more files, to ease
762         debugging.  Add trailing `:' command.
763         * tests/distcom5.test: Likewise.  Also, factor out common sed
764         script in subroutine `extract_distcommon'.
765         * tests/distcom7.test: Prefer cat + here-doc over echo to write
766         test Makefile.am files.  Add a trailing `:' command.
767         * tests/distname.test: Prefer `gzip -d' over `gunzip'.  Move the
768         call to `set -e' earlier.  Be stricter and more verbose in the
769         checking of the generated tarball.
770         (configure.in): Use the stub provided by ./defs, instead of
771         writing it from scratch.  Avoid obsoleted constructs.  Remove
772         useless call to `AM_PROG_CC_C_O'.
773         * tests/distdir.test: Various minor improvements/normalizations.
774         * tests/distlinks.test: Likewise.
775
776 2010-07-18  Stefano Lattarini  <stefano.lattarini@gmail.com>
777
778         Improve and extend test cond5.test.
779         * tests/cond5.test: Do not blindly sleep 60 seconds before polling
780         the background automake process, but poll it every 10 seconds for
781         at most 30 times (this makes the test both faster on good machines,
782         and more resilient to spurious timeout-due failures when in low
783         priority or on heavily-loaded systems).
784         Check also that automake writes the expected error messages on the
785         standard error.
786         Enable `errexit' flag, and related changes.
787         Rely on the `configure.in' stub created by `./defs', rather than
788         writing one from scratch.
789
790 2010-06-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
791
792         Update program --help output to match current GCS.
793         * configure.ac: Set and substitute PACKAGE_URL if AC_PACKAGE_URL
794         is not defined, for compatibility to Autoconf < 2.64.
795         * Makefile.am (do_subst): Substitute PACKAGE_BUGREPORT and
796         PACKAGE_URL.
797         (sc_diff_automake_in_automake): Update number of diff lines for
798         additional substitutions.
799         * aclocal.in (usage): Use PACKAGE_BUGREPORT.  Point to Automake
800         home page and GNU general help page.
801         * automake.in (usage): Likewise.
802         * doc/automake.texi: New flag PACKAGE_BUGREPORT, to factor email
803         address.
804         (Introduction, Creating amhello, amhello Explained, Options):
805         Use it throughout.
806         * lib/Automake/Makefile.am (do_subst): Substitute
807         PACKAGE_BUGREPORT.
808         * lib/Automake/Config.in ($PACKAGE_BUGREPORT): New global.
809         * lib/Automake/ChannelDefs.pm: Use it for footer of fatal
810         messages.
811
812         Clean up @var handling in the manual.
813         * doc/automake.texi: Throughout the manual, lower-case @var
814         names, replace a few one-character names.
815
816 2010-06-26  Stefano Lattarini  <stefano.lattarini@gmail.com>
817
818         Fix typo-related bug in test script silent5.test.
819         * tests/silent5.test: Use $EGREP, not $GREP (which is not even
820         defined).
821
822         Tests: remove useless repetitions of `foreign' automake option.
823         * tests/multlib.test (configure.in): Remove useless use of
824         `foreign' option in AM_INIT_AUTOMAKE (the `--foreign' option is
825         already in $AUTOMAKE by default, so no point in repeating it).
826         * tests/subobj10.test: Likewise.
827         * tests/subobj9.test: Likewise.
828         * tests/lex3.test (Makefile.am): Similarly, remove useless use
829         of `foreign' option in AUTOMAKE_OPTIONS.
830         * tests/lex5.test: Likewise.
831         * tests/pr279.test: Likewise.
832         * tests/pr279-2.test: Likewise.
833         * tests/specflg3.test: Likewise.
834         * tests/target-cflags.test: Likewise.
835
836         Drop useless requirement "gzip" in lex5.test.
837         * tests/lex5.test ($required): Do not list "gzip", as it's
838         never used.
839
840 2010-06-24  Stefano Lattarini  <stefano.lattarini@gmail.com>
841
842         Fix bugs in test script silent5.test.
843         * tests/silent5.test: Fixed a nasty bug (due to the use of grep
844         instead of egrep) that could have led to false negatives.
845
846 2010-06-21  Stefano Lattarini  <stefano.lattarini@gmail.com>
847
848         Add a test checking that distributed broken symlinks cause
849         `make dist' to fail.
850         * tests/distlinksbrk.test: New test.
851         * tests/Makefile.am (TESTS): Updated.
852
853 2010-06-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
854
855         Fix minor testsuite issues, update docs, for Yacc/Lex changes.
856         * doc/automake.texi (Yacc and Lex): Mention AM_YFLAGS, YFLAGS
857         and AM_LFLAGS, LFLAGS in the order in which they now appear in
858         the rules.
859         * NEWS: Update.
860         * tests/lflags.test, tests/lflags2.test, tests/yflags.test,
861         tests/yflags2.test: Prefer `make -e' over `make VAR=VAL', to
862         please maintainer-check.  Ensure generated C files contain a
863         declaration, to please compilers.
864
865 2010-06-21  Stefano Lattarini  <stefano.lattarini@gmail.com>
866
867         Fix bugs in Automake Yacc/Lex support w.r.t. $(AM_FLAGS) and
868         $(FLAGS) precedence.
869         * automake.in: Fix registration of languages "Lex", "Lex (C++)",
870         "Yacc" and "Yacc (C++)", so that $(LFLAGS) has precedence over
871         $(AM_LFLAGS) and $(YFLAGS) has precedence over $(AM_YFLAGS).
872         * tests/Makefile.am (XFAIL_TESTS): Updated accordingly.
873         * NEWS: Updated.
874
875         New tests, exposing bugs in Automake Yacc/Lex support w.r.t.
876         $(AM_FLAGS) and $(FLAGS) precedence.
877         * tests/lflags.test: New test, check that user $(LFLAGS) takes
878         precedence over automake (AM_LFLAGS) and (foo_LFLAGS).  Still
879         xfailing.
880         * tests/lflags2.test: Likewise.
881         * tests/yflags.test: New test, check that user $(YFLAGS) takes
882         precedence over automake (AM_YFLAGS) and (foo_YFLAGS).  Still
883         xfailing.
884         * tests/yflags2.test: Likewise.
885         * tests/Makefile.am (TESTS, XFAIL_TESTS): Extended accordingly.
886
887 2010-06-20  Stefano Lattarini  <stefano.lattarini@gmail.com>
888
889         Modernize, improve and extend tests `suffix*.test'.
890         * tests/suffix3.test: Enable `errexit' shell flag, and related
891         changes.
892         * tests/suffix4.test: Likewise.
893         * tests/suffix6.test: Likewise, and do not create a useless dummy
894         source file.
895         * tests/suffix7.test: Likewise.
896         * tests/suffix5.test: Enable `errexit' shell flag, and related
897         changes.  Make grepping of Makefile.in slighty stricter.
898         * tests/suffix.test: Enable `errexit' shell flag, and related
899         changes.  Also, do not redirect grep output to /dev/null, as this
900         might unmotivatedly hide useful information.
901         * tests/suffix2.test: Move setting of `errexit' shell flag earlier
902         in the script (just after inclusion of ./defs).  Use a more
903         idiomatic way to count text occurrences in Makefile.in with
904         grep.  Do not create useless dummy source files.
905         * tests/suffix10.test: Ensure verbose printing of captured make
906         stdout.  Minor cosmetic changes.
907         * tests/suffix8.test: Likewise.  Also, drop useless call to the
908         env(1) utility, and make grepping of make output stricter by using
909         $FGREP rather than plain grep.
910         * tests/suffix11.test: Likewise.
911         * tests/suffix12.test: Likewise.
912         * tests/suffix9.test: Prefet cat + here-doc over echo to append to
913         the `configure.in' stub.  Cosmetic changes.
914         * tests/suffix13.test: Cosmetic spacing change.
915
916 2010-06-13  Stefano Lattarini  <stefano.lattarini@gmail.com>
917
918         Add useful comment in test script ext.test.
919         * tests/ext.test: Add a comment explaining why an apparently
920         useless `if' statement is indeed required.
921
922         Add useful comment in test script obsolete.test.
923         * tests/obsolte.test: Add a comment explaining why we need
924         an indirection in adding $AUTOUPDATE to $required.
925
926         Normalize whitespaces in 'tests/Makefile.am'.
927         * tests/Makefile.am (TESTS): Use only spaces, not tabs, in the
928         definition of this variable.
929
930 2010-06-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
931
932         Remove a couple of unneeded conditionals from tests.
933         * tests/pr243.test, tests/pr266.test, tests/strip.test: No need
934         for the FOOTEST conditional.
935
936 2010-06-12  Stefano Lattarini  <stefano.lattarini@gmail.com>
937
938         Modernize, improve and/or fix various test scripts.
939         * tests/symlink3.test: Deleted, separated into two new, more
940         complete tests ...
941         * tests/forcemiss.test: ... this one ...
942         * tests/forcemiss2.test: ... and this one.
943         * tests/symlink2.test: Enable `errexit' shell flag, make test
944         stricter, and skip it if symlink creation is not supported.
945         * tests/postproc.test: Enable `errexit' shell flag, related
946         changes, and a couple of unrelated cosmetic changes.
947         * tests/recurs.test: Use the `configure.in' stub created by
948         `./defs', rather than writing one from scratch.  Make grepping
949         of Automake stderr slighty stricter.
950         * tests/substtarg.test: Likewise.
951         * tests/strip.test: Likewise, and move the call to `set -e'
952         earlier (just after the inclusion of `./defs'). Also, make sure
953         that the script installed by `make install-script' is equal to
954         the original one.
955         * tests/substref.test: Use the `configure.in' stub created by
956         `./defs', rather than writing one from scratch.  Move the call
957         to `set -e' earlier (just after the inclusion of `./defs').
958         Avoid to explicitly export CC for configure (that's already done
959         in ./defs).  Avoid potential problems with unpredictable make
960         output.  Finally, make grepping of Makefile.in stricter.
961         * tests/substre2.test: Ensure verbose printing of the captured
962         make's output, and make its grepping slighty stricter.
963         * tests/cygwin32.test: Enable `errexit' shell flag, and related
964         changes.  Also, do not create useless dummy source/data files.
965         * tests/scripts.test: Likewise.
966         * tests/recurs2.test: Likewise.  Also, use the `configure.in'
967         stub created by `./defs'.
968         * tests/Makefile.am (TESTS): Updated.
969
970         Modernize, improve and/or fix tests `pluseq*.test.
971         * tests/pluseq5.test: Append to configure.in using cat with an
972         here-doc, not using echo.
973         * tests/pluseq10.test: Make sure that the captured output of
974         `make' command is always displayed. Where possible, use $FGREP
975         instead of grep (this change makes some checks slighty stricter).
976         * tests/pluseq8.test: Enable `errexit' shell flag, with related
977         changes.
978         * tests/pluseq.test: Likewise.  Also, do not create useless dummy
979         data files, and use better m4 quoting in generated configure.in.
980         * tests/pluseq2.test: Likewise.  Also, append to configure.in
981         using cat with an here-doc, not using echo.
982         * tests/pluseq3.test: Likewise.
983         * tests/pluseq4.test: Likewise.
984         * tests/pluseq6.test: Likewise.
985         * tests/pluseq7.test: Do not create useless dummy source file.
986         * tests/pluseq9.test: Slighty extended w.r.t. the grepping of
987         Automake stderr.  Some unrelated cosmetic changes.
988
989         Testsuite: ensure verbose printing of captured stderr.
990         * tests/acloca18.test: Print captured stderr before either failing
991         or grepping it.  Be sure to send captured stderr to stderr, not to
992         stdout.
993         * tests/ansi3b.test: Likewise.
994         * tests/cond39.test: Likewise.
995         * tests/configure.test: Likewise.
996         * tests/missing3.test: Likewise.
997         * tests/missing6.test: Likewise.
998         * tests/output-order.test: Likewise.
999         * tests/pr300-ltlib.test: Likewise.
1000         * tests/python6.test: Likewise.
1001         * tests/python7.test: Likewise.
1002         * tests/python8.test: Likewise.
1003         * tests/python9.test: Likewise.
1004         * tests/subobj.test: Likewise.
1005         * tests/vars3.test: Likewise.
1006         * tests/missing4.test: Likewise, and fix a call to grep not to use
1007         the `-c' flag.
1008         * tests/ansi3.test: Likewise, and rely on the `configure.in' stub
1009         created by `./defs', rather than writing one from scratch.
1010
1011         Enable `errexit' shell flag in various tests.
1012         * tests/backsl.test: Enable the `errexit' shell flag, and
1013         related changes.
1014         * tests/backsl2.test: Likewise.
1015         * tests/block.test: Likewise.
1016         * tests/canon2.test: Likewise.
1017         * tests/canon4.test: Likewise.
1018         * tests/comment2.test: Likewise.
1019         * tests/condlib.test: Likewise.
1020         * tests/cond15.test: Likewise, and prefer $FGREP over grep.
1021         * tests/canon3.test: Likewise.  Also, avoid to create an useless
1022         dummy source file.
1023         * tests/acoutpt2.test: Enable the `errexit' shell flag, and some
1024         related changes.  Do some cosmetic improvements in the generated
1025         `configure.in' file.
1026         * tests/cond4.test: Likewise.
1027         * tests/cond14.test: Likewise.
1028         * tests/condinc.test: Likewise.
1029         * tests/cond7.test: Likewise.  Also, remove useless setting of
1030         AUTOMAKE_OPTIONS to `foreign' in the generated Makefile.am.
1031         * tests/ansi.test: Enable the `errexit' shell flag, and related
1032         changes.  Extended, esp. by running autoconf, ./configure and
1033         make, and by looking into the distdir.
1034
1035 2010-06-12  Stefano Lattarini  <stefano.lattarini@gmail.com>
1036             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1037
1038         Extend tests/README w.r.t. trailing `:' in test scripts.
1039         * tests/README (section "Writing test cases" subsection "Do"):
1040         Explain why apparently redundant trailing `:' and `Exit 0' in
1041         test scripts can indeed be useful.
1042
1043 2010-06-11  Stefano Lattarini  <stefano.lattarini@gmail.com>
1044
1045         Improve determination of PATH separator in bootstrap script.
1046         * bootstrap: Detemine what the PATH separator is the same way
1047         autoconf does.
1048
1049         Minor improvements in bootstrap script.
1050         * bootstrap: Consistently use two-spaces indentation.  Cosmetic
1051         improvement to comments.
1052         ($me): New variable, containing program basename.
1053         Prepend it to all error messages.
1054
1055         Testsuite now works with BSD make in parallel mode.
1056         * tests/defs.in: Unset variables __MKLVL__ and MAKE_JOBS_FIFO,
1057         which are exported by BSD make when run in parallel mode, and
1058         which can confuse make processes spawned by our testsuite.
1059         This change fixes a lot of spurious failure when the testsuite
1060         is run with BSD make in parallel mode.
1061
1062 2010-06-09  Stefano Lattarini  <stefano.lattarini@gmail.com>
1063
1064         Modernize, improve and/or fix various test scripts.
1065         * tests/sanity.test: Rely on the `configure.in' stub created by
1066         `./defs', rather than writing one from scratch.
1067         * tests/depend2.test: Likewise.  Also, call `set -e' just after
1068         the inclusion of `./defs', instead that later in the script.
1069         * tests/canon5.test: Avoid a useless `|| Exit 1' after a call to
1070         $AUTOMAKE, and improve the positioning of an $ACLOCAL call.
1071         * tests/exeext4.test: Use $FGREP instead of grep, where possible.
1072         Make auxiliary rules in the generated Makefile more silent.
1073         These changes make some checks slighty stricter.
1074         * tests/ext2.test: Call `Exit 1' if inclusion of `./defs' fails.
1075         * tests/gettext2.test: Place final `:' at the end of the script,
1076         rather than in the middle.
1077         * tests/exeext.test: Call `set -e' just after the inclusion of
1078         `./defs', instead that later in the script.
1079         * tests/extra5.test: Likewise.
1080         * tests/confdeps.test: Likewise.  Also, prefer `mv -f' over
1081         plain `mv', just to be sure.
1082         * tests/depcomp.test: Enable `errexit' shell flag, with related
1083         changes.  Also, modernize the generated configure.in.
1084         * tests/cond9.test: Likewise.  Also, rely on the `configure.in'
1085         stub created by `./defs', rather than writing one from scratch.
1086         * tests/cond10.test: Likewise.
1087         * tests/depcomp2.test: Likewise.
1088         * tests/depend3.test: Likewise.
1089         * tests/distcom7.test: Likewise.
1090         * tests/fortdep.test: Likewise.  Also, remove definition of
1091         AUTOMAKE_OPTIONS to `foreign' in the generated Makefile.am,
1092         since that flag is already provided by $AUTOMAKE.
1093         * tests/mdate.test: Made stricter, by checking that Automake
1094         actually failed, and by making a stricter grep on the error
1095         message.  Also, set shell `errexit flag'.
1096         * tests/python2.test: Improved verbose messages.
1097
1098         Make test `ammissing.test' stricter.
1099         * tests/ammissing.test: Fail if $ACLOCAL succeds unexpectedly.
1100         Enable `errexit' shell flag.
1101
1102 2010-06-08  Stefano Lattarini  <stefano.lattarini@gmail.com>
1103
1104         Enable `errexit' shell flag in some test scripts.
1105         * tests/subcond.test: Enabled `errexit' shell flag, and related
1106         minor changes.
1107         * tests/subst.test: Likewise.
1108         * tests/vars.test: Likewise.
1109         * tests/version4.test: Likewise.
1110         * tests/vpath.test: Likewise.
1111         * tests/vtexi2.test: Likewise.
1112         * tests/werror.test: Likewise.
1113         * tests/whoami.test: Likewise.
1114         * tests/tags.test: Likewise, and avoid to crate an useless dummy
1115         header file.
1116         * tests/acsilent.test: Likewise, and don't use an easily-avoided
1117         command substitution.
1118         * tests/unused.test: Likewise, and don't use an easily-avoided
1119         command substitution.
1120         * tests/version.test: Likewise, and avoid deprecated constructs
1121         in the generated `configure.in'.
1122         * tests/version2.test: Likewise, and avoid deprecated constructs
1123         in the generated `configure.in'.
1124
1125 2010-06-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1126
1127         Prefer AUTOMAKE_fails over `$AUTOMAKE | grep' in tests.
1128         * tests/ldadd.test: Enable errexit.  Use AUTOMAKE_fails so
1129         the verbose log contains all output.
1130         * tests/mdate.test: Likewise.
1131         Prompted by Stefano Lattarini's change to discover.test.
1132
1133 2010-06-06  Stefano Lattarini  <stefano.lattarini@gmail.com>
1134
1135         Improve tests link*.test (enable `errexit' shell flag).
1136         * tests/link_c_cxx.test: Enable `errexit shell flag, and related
1137         changes.  Also, do not create useless source files.
1138         * tests/link_dist.test: Likewise.
1139         * tests/link_f90_only.test: Likewise.
1140         * tests/link_f_only.test: Likewise.
1141         * tests/link_fc.test: Likewise.
1142         * tests/link_fccxx.test: Likewise.
1143         * tests/link_fcxx.test: Likewise.
1144
1145 2010-06-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1146
1147         Improve ext.test semantics, avoid OpenBSD sh errexit issue.
1148         * tests/ext.test: Inside shell compound command, use
1149         `if $cmd; then Exit 1; fi' rather than `$cmd && Exit 1', to
1150         fix failure with OpenBSD sh introduced with last patch.
1151         Actually ensure that a rule for .EXT.o is created for each
1152         known extension EXT.
1153
1154 2010-06-06  Stefano Lattarini  <stefano.lattarini@gmail.com>
1155
1156         Enable `errexit' shell flag in some test scripts.
1157         * tests/dash.test: Enable `errexit' shell flag, and related
1158         changes.
1159         * tests/defun.test: Likewise.
1160         * tests/defun2.test: Likewise.
1161         * tests/dejagnu.test: Likewise.
1162         * tests/double.test: Likewise.
1163         * tests/distcom2.test: Likewise.
1164         * tests/empty2.test: Likewise.
1165         * tests/empty3.test: Likewise.
1166         * tests/empty4.test: Likewise.
1167         * tests/exdir.test: Likewise.
1168         * tests/ext.test: Likewise.
1169         * tests/extra.test: Likewise.
1170         * tests/extra2.test: Likewise.
1171         * tests/extra3.test: Likewise.
1172         * tests/extra4.test: Likewise.
1173         * tests/flibs.test: Likewise.
1174         * tests/fnoc.test: Likewise.
1175         * tests/fo.test: Likewise.
1176         * tests/instexec.test: Likewise.
1177         * tests/ltdeps.test: Likewise.
1178         * tests/nodep.test: Likewise.
1179         * tests/nodepcomp.test: Likewise.
1180         * tests/f90only.test: Likewise, and remove botched/obsoleted
1181         comments and unecessary commands.
1182         * tests/fonly.test: Likewise, and remove botched/obsoleted
1183         comments and unecessary commands.
1184         * tests/discover.test: Likewise, and made stricter.
1185
1186         Enable `errexit' shell flag in all tests cxx*.test.
1187         * tests/cxx.test: Enabled `errexit' shell flag, and related
1188         minor changes.
1189         * tests/cxxansi.test: Likewise.
1190         * tests/cxxcpp.test: Likewise.
1191         * tests/cxxlibobj.test: Likewise.
1192         * tests/cxxlink.test: Likewise.
1193         * tests/cxxo.test: Likewise.
1194
1195         Enable `errexit' shell flag in various tests.
1196         * tests/acoutnoq.test: Enabled `errexit' shell flag, and related
1197         minor changes.
1198         * tests/acoutpt.test: Likewise.
1199         * tests/acoutqnl.test: Likewise.
1200         * tests/amassign.test: Likewise.
1201         * tests/ansi2.test: Likewise.
1202         * tests/ansi4.test: Likewise.
1203         * tests/badprog.test: Likewise.
1204         * tests/checkall.test: Likewise.
1205         * tests/clean.test: Likewise.
1206         * tests/colneq2.test: Likewise.
1207         * tests/colon.test: Likewise.
1208         * tests/colon5.test: Likewise.
1209         * tests/colon6.test: Likewise.
1210         * tests/comment.test: Likewise.
1211         * tests/compile_f90_c_cxx.test: Likewise.
1212         * tests/compile_f_c_cxx.test: Likewise.
1213         * tests/cond3.test: Likewise.
1214         * tests/cond6.test: Likewise.
1215         * tests/cond13.test: Likewise.
1216         * tests/conf2.test: Likewise.
1217         * tests/confvar.test: Likewise.
1218         * tests/confvar2.test: Likewise.
1219         * tests/cond8.test: Likewise, plus a cosmetic change.
1220         * tests/confh4.test: Likewise.  Also, add in the heading comments
1221         an excerpt from the original bug report which motivated the
1222         creation of this test, to make its purpose clearer.
1223
1224 2010-06-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1225
1226         Rewrite manual to be gender-neutral.
1227         * doc/automake.texi (GNU Build System)
1228         (Standard Directory Variables, General Operation, CVS)
1229         (Hard-Coded Install Paths, Dependencies As Side Effects):
1230         Rewrite text to not contain gender-specific pronouns when
1231         speaking about developers or users, either by avoiding pronouns
1232         or by addressing them as `you' instead.
1233         * THANKS: Update.
1234         Report by Christina Gratorp.
1235
1236         * AUTHORS: Update.
1237
1238 2010-06-06  Stefano Lattarini  <stefano.lattarini@gmail.com>
1239
1240         Make tests on user extensibility of silent-rules mode stricter.
1241         * tests/silent6.test: Made stricter w.r.t. the grepping of the
1242         output produced by `make'.
1243         * tests/silent7.test: Likewise.
1244
1245         Tests on silent-mode for C/Libtool made stricter.
1246         * tests/silent.test: Made stricter w.r.t. the grepping of the
1247         output produced by `make'.
1248         * tests/silent2.test: Likewise.
1249         * tests/silent4.test: Likewise.
1250         * tests/silent9.test: Likewise.
1251         * tests/silent3.test: Likewise, and add a final `make distclean'
1252         command to keep it better in sync with tests/silent{4,9}.test.
1253
1254         Improved test silent5.test.
1255         * tests/silent5.test: Remove by hand all generated C files after
1256         non-verbose builds, to ensure the following builds are clean.
1257         Try to clean and rebuild with the same verbosity and without
1258         removing generated sources in between, to check that this does
1259         not trigger a different set of rules.  Make grepping of make's
1260         output stricter.  Improved/added some comments.
1261
1262         New tests for Automake silent-mode with Fortran.
1263         * tests/silentf77.test: New test.
1264         * tests/silentf90.test: Likewise.
1265         * tests/Makefile.am (TESTS): Updated accordingly.
1266
1267         New test `silentcxx.test' (Automake silent-mode with C++).
1268         * tests/silentcxx.test: New test.
1269         * tests/Makefile.am (TESTS): Updated accordingly.
1270
1271         New test `silentyacc.test' (Automake silent-mode with Yacc).
1272         * tests/silentyacc.test: New test.
1273         * tests/Makefile.am (TESTS): Updated accordingly.
1274
1275         New test `silentlex.test' (Automake silent-mode with Lex).
1276         * tests/silentlex.test: New test.
1277         * tests/Makefile.am (TESTS): Updated accordingly.
1278
1279         Relax tests on silent-rules to cater to overly verbose makes.
1280         * tests/silent.test: When testing silent builds, don't fail if
1281         make's output simply contains the `mv' substring, but only if
1282         it contains the `mv ' substring (note the trailing space).
1283         * tests/silent2.test: Likewise.
1284         * tests/silent3.test: Likewise.
1285         * tests/silent4.test: Likewise.
1286         * tests/silent5.test: Likewise.
1287         * tests/silent9.test: Likewise.
1288
1289 2010-01-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1290
1291         Fix silent-rules output for disabled dependency tracking.
1292         * lib/am/depend2.am [!%FASTDEP%]: Rework silent-rules variable
1293         expansion code to also work in the case where %AMDEP% expands
1294         to FALSE at config.status time, using new substitution string
1295         %VERBOSE-NODEP%.
1296         * automake.in (verbose_nodep_flag): New function, appending
1297         `@am__nodep@' to the verbose-variable name.
1298         (handle_languages): If dependencies are not disabled, use it to
1299         set %VERBOSE-NODEP%.
1300         * m4/depend.m4: Substitute am__nodep as '_no', so the second
1301         verbose-variable will always expand to an empty string, if
1302         dependencies are enabled.
1303         * tests/silent5.test: Also test --disable-dependency-tracking;
1304         also test per-target flags for non-C language files.
1305         * tests/silent9.test: New test, like silent4.test but disable
1306         dependency tracking.
1307         * tests/Makefile.am: Adjust.
1308         * NEWS, THANKS: Update.
1309         Report by Dmitry V. Levin <ldv@altlinux.org>.
1310
1311 2010-05-23  Stefano Lattarini  <stefano.lattarini@gmail.com>
1312
1313         Extend test on `nostdinc' automake option.
1314         * tests/nostdinc.test: Enable `errexit' shell flag.  Related and
1315         unrelated minor changes.  Make the grepping of the generated
1316         Makefile.in slighty stricter.  Generate and run configure, so that
1317         the generated Makefile can be grepped too.
1318
1319 2010-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1320
1321         Make gnupload portable to EBCDIC hosts.
1322         * lib/gnupload: Use literal newline as argument for 'tr' rather
1323         than \015, for EBCDIC hosts.  Also, avoid unportable nested
1324         double-quotes and backquotes.
1325         * THANKS: Update.
1326         Report from Eric Blake and Steve Goetze via gnulib.
1327
1328 2010-05-23  Stefano Lattarini  <stefano.lattarini@gmail.com>
1329
1330         Fix Autoconf version required by Automake's configure.
1331         Automake configure script used to tell that automake required
1332         autoconf 2.60 or later, but then it checked for autoconf >= 2.62,
1333         and if that was not found, it gave an error saying that Automake
1334         required configure 2.61a-341 or later.  This change should
1335         eliminate such inconsistencies.
1336         * configure.ac ($required_autoconf_version): New variable.
1337         Use it throughout.
1338
1339 2010-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1340
1341         Fix unportable sed script in maintainer-check test.
1342         * Makefile.am (sc_tests_Exit_not_exit): Rewrite sed script to
1343         not contain semicolon after 'b' or brace commands, for NetBSD.
1344
1345         Wildcards are not portable to NetBSD make.
1346         * doc/automake.texi (Wildcards): Document portability issue.
1347         * tests/extra10.test, tests/extra11.test, tests/extra12.test:
1348         Require GNU make.
1349
1350 2010-05-23  Stefano Lattarini  <stefano.lattarini@gmail.com>
1351
1352         Make test for configure.in vs. configure.ac stricter.
1353         * tests/configure.test: Use a configure.in file that provokes
1354         an automake error, to ensure configure.ac is preferred.
1355
1356         Avoid possible false negatives in dejagnu7.test.
1357         * tests/dejagnu7.test: Enable shell `errexit' flag.  Also, avoid
1358         unportable use of fgrep option `-e'.
1359
1360         Fix conflnk3.test to work with Solaris/Heirloom Sh.
1361         * tests/conflnk3.test: Use `test -r FILE' and `test ! -r FILE'
1362         instead of respectively `test -e FILE' and `test ! -e FILE',
1363         since Solaris Sh doesn't grok the latter.  Do not SKIP the test
1364         if the shell doesn't support `test -e'.
1365
1366 2010-04-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1367
1368         Fix typo in manual.
1369         * doc/automake.texi (Simple Tests using parallel-tests): Add
1370         missing closing parenthesis.
1371
1372         Fix leftover call to removed function macros_dump.
1373         * automake.in (read_main_am_file): Call variables_dump, not
1374         macros_dump.  Print actual error before list of variables.
1375
1376 2010-04-25  Stefano Lattarini  <stefano.lattarini@gmail.com>
1377
1378         Minor improvements in comments of test `silent3.test'.
1379         * tests/silent3.test: Tell to keep it in sync with `silent9.test'
1380         too.
1381
1382 2010-04-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1383
1384         testsuite: ensure verbose printing of captured output.
1385         * tests/acloca14.test, tests/acloca18.test, tests/aclocal.test,
1386         tests/fort2.test, tests/help.test, tests/missing3.test,
1387         tests/missing6.test: Print captured stdout or stderr before
1388         grepping it.
1389
1390 2010-04-20  Stefano Lattarini  <stefano.lattarini@gmail.com>
1391
1392         Make test badopt.test stricter (by enabling `set -e').
1393         * tests/badopt.test: Add call to `set -e'.  Due to this change,
1394         an unexpected failure in the call to `$ACLOCAL' (whose outcome
1395         was previously unchecked) would cause the whole test to fail.
1396         Also, bumped the copyright years.
1397
1398         Make test for configure.in vs. configure.ac stricter.
1399         * tests/configure.test: Use a configure.in file that provokes
1400         an automake error, to ensure configure.ac is preferred.
1401
1402         Use `set -e' in confsub.test (avoids possible false negatives).
1403         * tests/confsub.test: Enable shell `errexit' flag, and related
1404         changes (this helps avoiding some possible minor false negatives).
1405         Also, bumped copyright years.
1406
1407 2010-04-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1408
1409         Fix -Werror handling for presence of configure.in and configure.ac.
1410         * lib/Automake/Variable.pm (Automake::Variable): Do not initialize
1411         $configure_ac at the global level, before command-line arguments
1412         have been parsed.
1413         (require_variables): Initialize it here.
1414         * tests/configure.test: New test.
1415         * tests/Makefile.am: Update.
1416         Report by Stefano Lattarini.
1417
1418 2010-04-20  Stefano Lattarini  <stefano.lattarini@gmail.com>
1419
1420         Avoid possible false negatives in confh5.test.
1421         * tests/confh5.test: Enable shell `errexit' flag, and bumped
1422         copyright years.  Due to this change, any unexpected failure
1423         in calls to $ACLOCAL, $AUTOMAKE, $AUTOCONF or $AUTOHEADER, or
1424         a failure in grepping expected text in output files should now
1425         cause the whole test to fail.
1426
1427 2010-04-17  Stefano Lattarini  <stefano.lattarini@gmail.com>
1428
1429         Fixed typo in POD documentation of Automake::Channels.
1430         * lib/Automake/Channels.pm: Fixed typo in POD documentation:
1431         @<...> was used instead of C<...>.
1432
1433 2010-04-14  Stefano Lattarini  <stefano.lattarini@gmail.com>
1434
1435         Refactor tests on Automake TESTS color output.
1436         * tests/color.test: Tests using the expect program moved out to...
1437         * tests/color2.test: ... this new file.
1438         * tests/Makefile.am (TESTS): Extended accordingly.
1439
1440 2010-04-12  Stefano Lattarini  <stefano.lattarini@gmail.com>
1441
1442         Fix typos in comments in test confh5.test
1443         * tests/confh5.test: Fix a couple of typos in comments.
1444
1445         Avoid possible false negatives in canon-name.test.
1446         * tests/canon-name.test: Enable shell `errexit' flag.  Improve
1447         test description.
1448
1449 2010-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1450
1451         Fix per-Makefile.am setting of -Werror.
1452         Before this patch, 'AUTOMAKE_OPTIONS = -Werror' in one
1453         Makefile.am would carry over to other Makefile.am files
1454         treated afterwards by the same thread, causing inconsistent
1455         and unstable exit status values.
1456         * lib/Automake/Channels.pm (dup_channel_setup)
1457         (drop_channel_setup): Save and restore the setting of
1458         $warnings_are_errors.
1459         * tests/werror3.test: New test.
1460         * tests/Makefile.am: Adjust.
1461         * NEWS: Update.
1462
1463 2010-04-11  Stefano Lattarini  <stefano.lattarini@gmail.com>
1464
1465         Bugfix in confh5.test w.r.t. Solaris/Heirloom Sh.
1466         * tests/confh5.test: In the generated Makefile.am: do not use
1467         `test ! -e FILE' to check for the non-existence of a file, since
1468         that is not supported by Solaris/Heirloom Sh.
1469
1470         Make test `aclocal3.test' stricter.
1471         * tests/aclocal3.test: Add call to `set -e'.  Fail if $ACLOCAL
1472         succeds unexpectedly.
1473
1474         Add tests checking that symlinks are resolved by `make dist'.
1475         * tests/distlinks.test: New test.
1476         * tests/Makefile.am (TESTS): Updated accordingly.
1477         Suggested by observations from Ralf Wildenhues.
1478
1479 2010-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1480
1481         Use -9 for maximum xz compression with dist-xz.
1482         * lib/am/distdir.am (dist-xz, dist, dist-all): Pass -9 to xz.
1483         * NEWS, THANKS: Update.
1484         Report by Pavel Sanda.
1485
1486 2010-03-30  Stefano Lattarini  <stefano.lattarini@gmail.com>
1487
1488         Avoid an unportable use of `$status' shell variable.
1489         * Makefile.am (path-check): Don't use the `$status' shell variable
1490         in the target's rules, as it's special in Zsh (equivalent to `$?',
1491         and readonly).
1492
1493         Avoid another use of `chmod -R'.
1494         * Makefile.am (path-check): To be safe, do not use `chmod -R' on
1495         $(distdir) before removing it (as Solaris `chmod -R' touches
1496         symlink targets).  Instead, use the cleanup strategy used in
1497         distdir.am.
1498
1499 2010-03-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1500
1501         Remove uses of @acronym and @sc.
1502         * doc/automake.texi (Public Macros, Limitations on File Names):
1503         Remove all usage of @acronym and @sc in the manual.
1504         Suggested by Karl Berry.
1505
1506 2010-03-13  Karl Berry  <karl@freefriends.org>
1507
1508         GNU hello uses fdl.texi, not gpl.texi.
1509         * doc/automake.texi (Texinfo): Adjust example to upstream
1510         change.
1511
1512 2010-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1513
1514         Formatting cleanups in macro comments.
1515         * automake.in, lib/Automake/Channels.pm,
1516         lib/Automake/FileUtils.pm, lib/Automake/Options.pm,
1517         lib/Automake/Variable.pm, lib/Automake/XFile.pm,
1518         m4/options.m4, m4/substnot.m4: Fix macro comment format.
1519
1520 2010-03-04  Stefano Lattarini  <stefano.lattarini@gmail.com>
1521             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1522
1523         Avoid generation of `tests/defs-p' file.
1524         * tests/defs.in: In the generated `configure.in' snippet: call
1525         `AM_INIT_AUTOMAKE' with the `parallel-tests' option if the shell
1526         variable `parallel_tests' is set to `yes'.
1527         * tests/Makefile.am (defs-p): Target removed.
1528         (check_SCRIPTS): Removed `defs-p'.
1529         (clean-local-check): Do not unlink `defs-p' anymore.
1530         ($(parallel_tests)): Transformation rules for the test scripts
1531         adjusted.
1532         * tests/gen-parallel-tests: Selection rules for the test
1533         scripts adjusted.
1534         * tests/parallel-tests.test: Set `$parallel_tests' to `yes'
1535         then include `./defs' (rather than simply including `./defs-p').
1536         * tests/parallel-tests2.test: Likewise.
1537         * tests/parallel-tests3.test: Likewise.
1538         * tests/parallel-tests4.test: Likewise.
1539         * tests/parallel-tests5.test: Likewise.
1540         * tests/parallel-tests6.test: Likewise.
1541         * tests/parallel-tests7.test: Likewise.
1542         * tests/parallel-tests8.test: Likewise.
1543         * tests/parallel-tests9.test: Likewise.
1544         * tests/parallel-tests10.test: Likewise.
1545         * tests/README (Section "Writing Test Cases" subsection "Do"):
1546         Adjusted the parts referring to tests checking `parallel-tests'
1547         behaviour.  Some other minor related improvements.
1548         * tests/.gitignore (defs-p): Removed.
1549
1550 2010-03-04  Stefano Lattarini  <stefano.lattarini@gmail.com>
1551
1552         Remove redundant unset of variable TESTS from some test scripts.
1553         * tests/color.test: Do not unset the `TESTS' variable, as it's
1554         already unset in the `defs' file.
1555         * tests/check5.test: Likewise.
1556         * tests/check8.test: Likewise.
1557         * tests/check9.test: Likewise.
1558         * tests/check10.test: Likewise.
1559         * tests/check11.test: Likewise.
1560         * tests/parallel-tests.test: Likewise.
1561         * tests/parallel-tests3.test: Likewise.
1562         * tests/parallel-tests4.test: Likewise.
1563         * tests/parallel-tests5.test: Likewise.
1564         * tests/parallel-tests6.test: Likewise.
1565         * tests/parallel-tests7.test: Likewise.
1566
1567 2010-02-22  Karl Berry  <karl@gnu.org>
1568
1569         Improve help message of mdate-sh.
1570         * mdate-sh: mention actual output format in help message.
1571
1572 2010-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1573
1574         Deprecate dist-lzma in favor of dist-xz.
1575         * doc/automake.texi (The Types of Distributions, Options):
1576         Adjust text to reflect renaming of lzma to xz.
1577         * NEWS: Update.
1578         Missing deprecation noted by Antonio Diaz Diaz.
1579
1580 2010-02-20  Stefano Lattarini  <stefano.lattarini@gmail.com>
1581
1582         Add tests about support of wildcards in EXTRA_DIST.
1583         * tests/extra10.test: New test, check basic support of wildcards
1584         in EXTRA_DIST.
1585         * tests/extra11.test: New test, check more complex usage of
1586         wildcards in EXTRA_DIST.
1587         * tests/extra12.test: New test, check usage of wildcards in
1588         EXTRA_DIST when $builddir != $srcdir.
1589         * tests/Makefile.am (TESTS): Updated accordingly.
1590         Necessity of these new tests suggested by Braden McDaniel
1591         and Ralf Wildenhues.
1592
1593 2010-02-08  Simon Josefsson  <simon@josefsson.org>
1594
1595         Fix copyright statement in gnupload script.
1596         * lib/gnupload: Fix copyright statement.
1597
1598 2010-02-06  Dmitry V. Levin  <ldv@altlinux.org>  (tiny change)
1599             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1600
1601         Fix exit status of signal handlers in shell scripts.
1602         The value of `$?' on entrance to signal handlers in shell scripts
1603         cannot be relied upon, so set the exit code explicitly to
1604         128 + SIG<SIGNAL>.
1605         * lib/am/check.am (am__check_pre): Use `exit 143' in signal handler.
1606         * lib/elisp-comp: Likewise.
1607         * lib/install-sh: Likewise.
1608         * lib/ylwrap: Likewise.  Also, fix script to trap signal 13, not 3.
1609         * NEWS, THANKS: Update.
1610         Bug report, analysis, and initial patch by Dmitry V. Levin.
1611
1612 2010-02-06  Karl Berry  <karl@gnu.org>
1613
1614         Improve gnupload usage text.
1615         * gnupload (usage): Shorten to make more likely to fit on a tty
1616         line.  Mention CMD in the synopsis.  With ..., plural is implied.
1617
1618 2010-01-28  Christos Kontas  <xakon@yahoo.com>  (tiny change)
1619
1620         Fix some typos in the manual
1621         * doc/automake.texi (Nested Packages, Rebuilding): Fix typos.
1622
1623 2010-01-17  Stefano Lattarini  <stefano.lattarini@gmail.com>
1624
1625         Slighty improve tests acoutbs.test and acoutbs2.test.
1626         * tests/acoutbs2.test: Enable `errexit' shell flag.  Check that
1627         autoconf and configure work, that the file `zot' is created by
1628         configure, and that no file containing a backslash in its name is
1629         created.
1630         * tests/acoutbs.test: Likewise, plus updated copyright years.
1631
1632         Fix test acoutbs2.test.
1633         * tests/acoutbs2: In the generated configure.in: add proper calls
1634         to AC_INIT and AM_INIT_AUTOMAKE, and remove explicit definition of
1635         PACKAGE and VERSION. Add a call to aclocal before calling automake.
1636         Updated copyright years.
1637         * tests/Makefile.am (XFAIL_TESTS): Removed acoutbs2.test.
1638
1639         Add forgotten test scripts to $(TESTS).
1640         * tests/Makefile.am (TESTS): Added test scripts present on the
1641         filesystem, which were erroneously left out from $(TESTS):
1642         acoutbs2.test, badopt.test, extra2.test.
1643         (XFAIL_TESTS): Added acoutbs2.test.
1644
1645 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1646
1647         Sync auxiliary files from upstream.
1648         * INSTALL, lib/INSTALL, lib/config.guess, lib/config.sub:
1649         Sync from upstream.
1650
1651         Bump copyright years.
1652         * aclocal.in (write_aclocal, version): Bump copyright years.
1653         * automake.in (gen_copyright, version): Likewise.
1654         * doc/automake.texi: Likewise.
1655
1656         Rotate ChangeLog.
1657         * ChangeLog.09: New file, rotated from ...
1658         * ChangeLog: ... here.
1659         * Makefile.am (EXTRA_DIST): Distribute ChangeLog.09.
1660
1661 -----
1662
1663 Copyright (C) 2010  Free Software Foundation, Inc.
1664
1665 Copying and distribution of this file, with or without modification, are
1666 permitted provided the copyright notice and this notice are preserved.
1667
1668 ;; Variables:
1669 ;; coding: utf-8
1670 ;; End: