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