]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
maint: spelling and whitespace fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 7 Jun 2024 15:41:45 +0000 (08:41 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 7 Jun 2024 15:43:33 +0000 (08:43 -0700)
Most of these spelling fixes are just to comments and documentation.
However, some affect tests as follows:
* t/cond36.sh (tparse.h): Fix misspelling of dependency.
* t/disthook.sh: Fix misspelling of file.
* t/help3.sh: Fix misspelling of long option.
* t/instdir-ltlib.sh: Fix misspellings of macro names.
This causes the test to fail, so someone with libtool
expertise needs to look into this.
* t/tap-no-spurious-numbers.sh (highno): Fix misspelling of shell var.

106 files changed:
HACKING
NEWS
NEWS-2.0
PLANS/subdir-objects.txt
THANKS
bin/automake.in
configure.ac
contrib/checklinkx
doc/automake-history.texi
doc/automake.texi
doc/local.mk
lib/Automake/ChannelDefs.pm
lib/Automake/Channels.pm
lib/Automake/Condition.pm
lib/Automake/Configure_ac.pm
lib/Automake/FileUtils.pm
lib/Automake/Getopt.pm
lib/Automake/Variable.pm
lib/Automake/XFile.pm
lib/am/check.am
lib/am/header-vars.am
lib/am/ltlib.am
lib/am/progs.am
lib/depcomp
lib/gendocs.sh
lib/install-sh
lib/missing
lib/tap-driver.sh
m4/depend.m4
m4/dmalloc.m4
m4/sanity.m4
maintainer/maint.mk
old/ChangeLog.00
old/ChangeLog.03
old/ChangeLog.09
old/ChangeLog.11
old/ChangeLog.96
old/TODO
t/README
t/ac-output-old.tap
t/ar-lib5b.sh
t/autodist-aclocal-m4.sh
t/autodist-config-headers.sh
t/ax/am-test-lib.sh
t/ax/depcomp.sh
t/ax/tap-functions.sh
t/ax/test-defs.in
t/ax/test-lib.sh
t/ax/testsuite-summary-checks.sh
t/backcompat6.sh
t/backslash-issues.sh
t/canon8.sh
t/cond36.sh
t/confh8.sh
t/dist-no-built-sources.sh
t/distcheck-configure-flags-am.sh
t/disthook.sh
t/extra-dist-wildcards-vpath.sh
t/extra-dist-wildcards.sh
t/help.sh
t/help2.sh
t/help3.sh
t/help4.sh
t/instdir-ltlib.sh
t/instspc.tap
t/java-compile-run-flat.sh
t/lexvpath.sh
t/lisp-flags.sh
t/local.mk
t/longlin2.sh
t/parallel-tests-fork-bomb.sh
t/parallel-tests-interrupt.tap
t/perf/testsuite-summary.sh
t/primary-prefix-invalid-couples.tap
t/py-compile-basedir.sh
t/py-compile-env.sh
t/relativize.tap
t/remake-deeply-nested.sh
t/remake-macrodir.sh
t/remake-timing-bug-pr8365.sh
t/self-check-exit.tap
t/serial-tests.sh
t/spy-rm.tap
t/subobjname.sh
t/suffix3.tap
t/tap-deps.sh
t/tap-diagnostic-custom.sh
t/tap-log.sh
t/tap-no-spurious-numbers.sh
t/tap-plan-leading-zero.sh
t/tap-plan-malformed.sh
t/tap-test-number-0.sh
t/tar-ustar-id-too-high.sh
t/test-driver-custom-multitest.sh
t/test-driver-custom-xfail-tests.sh
t/test-log.sh
t/test-logs-repeated.sh
t/test-metadata-global-result.sh
t/tests-environment-backcompat.sh
t/tests-environment-fd-redirect.sh
t/txinfo-no-texi-but-texi-in.sh
t/uninstall-fail.sh
t/vala-configure.sh
t/vala-mix.sh
t/vala-mix2.sh
t/yacc-grepping2.sh

diff --git a/HACKING b/HACKING
index f70fcea8a8e6b1bc5b8739383ca412524d4936d4..8f88c80314a0c9e51615086c43a8061a457708f0 100644 (file)
--- a/HACKING
+++ b/HACKING
   nor contain any potentially destabilizing refactoring or sweeping change,
   nor introduce new features whose implementation might be liable to cause
   bugs or regressions in existing code.  However, it might be acceptable to
-  introduce very limited and localized backward-incompatibilities, *only*
+  introduce very limited and localized backward-incompatibility, *only*
   if that is necessary to fix non-trivial bugs, address serious performance
   issues, or greatly enhance usability.  But please, do this sparsely and
   rarely!
 
-* Major releases can introduce backward-incompatibilities (albeit such
-  incompatibilities should be announced well in advance, and a smooth
+* Major releases can introduce backward incompatibility (albeit such
+  incompatibility should be announced well in advance, and a smooth
   transition plan prepared for them), and try more risky and daring
-  refactorings and code cleanups.  Still, backward incompatibilities are
+  refactorings and code cleanups.  Still, backward incompatibility is
   extremely undesirable and should be avoided at all costs.
 
 * For more information, refer to the extensive discussion associated
   use the 'bootstrap' script.  It uses the code from the source
   tree, so the resulting files (aclocal.m4 and Makefile.in) should
   be the same as you would get if you install this version of
-  automake and use it to generate those files. 
+  automake and use it to generate those files.
 
 * To get a faithful and correct rebuild, run:
     ./bootstrap && ./config.status --recheck && make clean all
   do. However, sometimes it may be necessary to use the development
   versions due to bugs fixed, etc. Whatever is first in PATH wins.
   (Some background: https://bugs.gnu.org/11347)
-  
+
 * The Automake git tree currently carries three basic branches:
   'master', 'next' and 'maint'.  In practice, for quite a few years now,
   as of this writing in 2023, we have been using only the master branch,
 
 * Some hints for debugging test failures or trying to understand the
   (complex) test infrastructure.
-  
+
   - You may want a simple test just to exercise the setup; t/amassign.sh
   is such a test. For a simple test that runs automake twice (sometimes
   useful in finding concurrency failures), try t/nodef.sh.
-  
+
   - The t/ax/ dir contains most of the test infrastructure files.
 
   - To trace the (complex) test initialization code, change the set -e
   to set -ex (or whatever you wish) in t/ax/test-init.sh.
   Automake itself enables -x for the *.log and test-suite.log files,
   in am_test_setup in t/ax/test-lib.sh. You may want to change to -vx.
-  
+
   - If you want to run the individual commands of a test one by one in a
   shell, you have to reproduce the test environment. Start a subshell and:
     PATH=$am/bin:$am/t/ax:$PATH # where $am is your automake source checkout
     . test-init.sh  # beginning of test
   Then each command you type will be executed in the test environment,
   including -x being enabled. Each test prints the PATH value at the beginning.
-  
+
   - If you need to debug a test which fails under installcheck, you need
   to invoke make with am_running_installcheck=yes, as is done by the
   installcheck-testsuite target in t/local.mk.
-  
+
   - If you want to see the (complex shell) commands that make is
   running, despite all of Automake's attempt at silence, run (GNU)
     make --debug=p ... other make args ...
 
 * Run "make git-upload-release".
   For pretest releases: "DEVEL_SNAPSHOT=1 make git-upload-release".
-  
+
   This will first verify that you are releasing from a tagged version
   and that the local git repository and working tree are clean and
   up-to-date, and will then run "make dist" to create the tarballs,
diff --git a/NEWS b/NEWS
index 2da4cc769ec9e930b5f62d756644ae1753c61fb4..fa6b8f842dae6d9e548c751a84425db95de9cb5f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-For planned incompatibilities in a future Automake 2.0 release,
+For planned incompatibility in a future Automake 2.0 release,
 please see NEWS-2.0 and start following the advice there now.
 
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -500,7 +500,7 @@ New in 1.14:
   - The 'compile' script is now unconditionally required for all packages
     that perform C compilation (if you are using the '--add-missing'
     option, automake will fetch that script for you, so you shouldn't
-    need any explicit adjustment).  This new behaviour is needed to avoid
+    need any explicit adjustment).  This new behavior is needed to avoid
     obscure errors when the 'subdir-objects' option is used, and the
     compiler is an inferior one that doesn't grasp the combined use of
     both the "-c -o" options; see discussion about automake bug#13378 for
@@ -528,7 +528,7 @@ New in 1.14:
   - The AM_PROG_CC_C_O macro can still be called, albeit that should no
     longer be necessary. This macro is now just a thin wrapper around the
     Automake-enhanced AC_PROG_CC.  This means, among the other things,
-    that its behaviour is changed in three ways:
+    that its behavior is changed in three ways:
 
       1. It no longer invokes the Autoconf-provided AC_PROG_CC_C_O
          macro behind the scenes.
@@ -853,7 +853,7 @@ New in 1.13:
   - Elisp files placed in a subdirectory are now byte-compiled to '.elc'
     files in the same subdirectory; for example, byte-compiling of file
     'sub/foo.el' file will result in 'sub/foo.elc' rather than in
-    'foo.elc'.  This behaviour is backward-incompatible with older
+    'foo.elc'.  This behavior is backward-incompatible with older
     Automake versions, but it is more natural and more sane.  See also
     automake bug#7441.
 
@@ -946,7 +946,7 @@ New in 1.13:
 
   - Various internal refactorings.  They should cause no visible change,
     but the chance for regression is there anyway, so please report any
-    unexpected or suspicious behaviour.
+    unexpected or suspicious behavior.
 
   - Support for pre-8.0 versions of the Intel C Compiler has been dropped.
     This should cause no problem, since icc 8.0 has been released in
@@ -1028,7 +1028,7 @@ New in 1.12.5:
 
 * Miscellaneous changes:
 
-  - automake and aclocal no longer honours the 'perllibdir' environment
+  - automake and aclocal no longer honors the 'perllibdir' environment
     variable.  That had always been intended only as an hack required in
     the testsuite, not meant for any use beyond that.
 
@@ -1064,7 +1064,7 @@ New in 1.12.3:
 * Miscellaneous changes:
 
   - The '.m4' files provided by Automake no longer define serial numbers.
-    This should cause no difference in the behaviour of aclocal though.
+    This should cause no difference in the behavior of aclocal though.
 
   - Some testsuite weaknesses and spurious failures have been fixed.
 
@@ -1337,7 +1337,7 @@ New in 1.12:
 
   - Slightly backward-incompatible change, relevant only for use of Yacc
     with C++: the extensions of the header files produced by the Yacc
-    rules are now modelled after the extension of the corresponding
+    rules are now modeled after the extension of the corresponding
     sources.  For example, yacc files named "foo.y++" and "bar.yy" will
     produce header files named "foo.h++" and "bar.hh" respectively, where
     they would have previously produced header files named simply "foo.h"
@@ -1688,12 +1688,12 @@ Bugs fixed in 1.11.2:
     and error out if `javadir' is undefined, instead of silently producing
     a broken Makefile.in.
 
-  - aclocal and automake now honour the configure-time definitions of
+  - aclocal and automake now honor the configure-time definitions of
     AUTOCONF and AUTOM4TE when they spawn autoconf or autom4te processes.
 
   - The `install-info' recipe no longer tries to guess whether the
     `install-info' program is from Debian or from GNU, and adaptively
-    change its behaviour; this has proven to be frail and easy to
+    change its behavior; this has proven to be frail and easy to
     regress.
 
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -2833,7 +2833,7 @@ Bugs fixed in 1.7.3:
   - use `_dirstamp' when the file-system doesn't support `.dirstamp'
   - install/uninstall `*.i[0-9][0-9]'-style info files
   - more changes that affect only the Automake package (not its output)
-* Fix some incompatibilities with upcoming perl-5.10.
+* Fix some incompatibility with upcoming perl-5.10.
 * Properly quote AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION when defining
   PACKAGE and VERSION.
 * depcomp fixes:
index 41fbdcbfdb24b631f71b0d4b26f5e2691646afe6..e31ba291ee136e945106845fc70179d33d867b31 100644 (file)
--- a/NEWS-2.0
+++ b/NEWS-2.0
@@ -1,4 +1,4 @@
-This file (NEWS-2.0) lists several incompatibilities that may happen in a
+This file (NEWS-2.0) lists incompatibility issues that may happen in a
 future Automake 2.0 release.
 
 However, the (few) current Automake maintainers have insufficient interest
@@ -12,7 +12,7 @@ any time soon.  So moving these future issues to a separate file seemed
 warranted.  For more info, see the ./PLANS/ directory.
 
 
-* WARNING: Future backward-incompatibilities!
+* WARNING: Future backward-incompatibility!
 
   - Makefile recipes generated by Automake 2.0 will expect to use an
     'rm' program that doesn't complain when called without any non-option
@@ -31,7 +31,7 @@ warranted.  For more info, see the ./PLANS/ directory.
     for Automake 2.0.
 
   - Automake 2.0 will require Autoconf 2.71 or later.  Exact
-    dependencies are unknowable at ths time.
+    dependencies are unknowable at this time.
 
   - Automake 2.0 will drop support for the long-deprecated 'configure.in'
     name for the Autoconf input file.  You are advised to start using the
@@ -39,8 +39,8 @@ warranted.  For more info, see the ./PLANS/ directory.
 
   - The ACLOCAL_AMFLAGS special make variable will be fully deprecated in
     Automake 2.0: it will raise warnings in the "obsolete" category (but
-    still no hard error of course, for compatibilities with the many, many
-    packages that still relies on that variable).  You are advised to
+    still no hard error of course, for compatibility with the many, many
+    packages that still rely on that variable).  You are advised to
     start relying on the new Automake support for AC_CONFIG_MACRO_DIRS
     instead (which was introduced in Automake 1.13).
 
index c6a046f52db1293a543c8743e1048bb1e5f92731..fe79e80c4c1ab117c42a7655b76b0158293d77b2 100644 (file)
@@ -1,7 +1,7 @@
 Summary
 -------
 
-We want to make the behaviour currently enabled by the 'subdir-objects'
+We want to make the behavior currently enabled by the 'subdir-objects'
 the default one, and in fact the *only* one, in Automake 2.0.
 See automake bug#13378: <https://debbugs.gnu.org/13378>.
 
@@ -15,12 +15,12 @@ that the 'subdir-objects' option had only been introduced in April 1999,
 starting with commit 'user-dep-gen-branchpoint-56-g88b5959', and never
 made the default (likely to avoid backwards-compatibility issues).
 
-Since I believe the behaviour enabled by the 'subdir-objects' is the most
+Since I believe the behavior enabled by the 'subdir-objects' is the most
 useful one, and in fact the *only* natural one, I'd like to make it the
 only one available, simplifying the Automake implementation and APIs a
 little in the process.
 
-Alas, since this also means changing the default behaviour of Automake
+Alas, since this also means changing the default behavior of Automake
 ('subdir-objects' is not enabled by default, sadly), this means the
 transition path will be less smooth than I'd like.
 
@@ -58,8 +58,8 @@ Submit the pending patch series that fixes https://debbugs.gnu.org/13928
 For automake 2.0
 ----------------
 
-Make the behaviour once activated by the 'subdir-object' option mandatory.
-With that change, we'll drop support for the "old" behaviour of having
+Make the behavior once activated by the 'subdir-object' option mandatory.
+With that change, we'll drop support for the "old" behavior of having
 object files derived from sources in a subdirectory being placed in the
 current directory rather than in that same subdirectory.
 
diff --git a/THANKS b/THANKS
index 8f37ecd5ebb6ac244f95b158a53f9ddfe1869d74..c48cb0ea04b5a89bc6df4b2ed9782a7426113c97 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -40,7 +40,7 @@ Arto C. Nirkko                  anirkko@insel.ch
 Assar Westerlund                assar@sics.se
 Axel Belinfante                 Axel.Belinfante@cs.utwente.nl
 Bas Wijnen                      shevek@fmf.nl
-Ben Pfaff                       blp@cs.standford.edu
+Ben Pfaff                       blp@cs.stanford.edu
 Benoit Sigoure                  tsuna@lrde.epita.fr
 Bernard Giroud                  bernard.giroud@creditlyonnais.ch
 Bernard Urban                   Bernard.Urban@meteo.fr
index 24b1bb51f2cf5ea392eaf32a49b12a4a727729b8..74a18cd693fb0cabd863a1ea0548a535d8e8e771 100644 (file)
@@ -1843,7 +1843,7 @@ sub handle_single_transform
               else
                 {
                   # Since the next major version of automake (2.0) will
-                  # make the behaviour so far only activated with the
+                  # make the behavior so far only activated with the
                   # 'subdir-objects' option mandatory, it's better if we
                   # start warning users not using that option.
                   # As suggested by Peter Johansson, we strive to avoid
@@ -1866,7 +1866,7 @@ object file(s) will be placed in the top-level directory.  However, this
 behavior may change in a future Automake major version, with object
 files being placed in the same subdirectory as the corresponding sources.
 You are advised to start using 'subdir-objects' option throughout your
-project, to avoid future incompatibilities.
+project, to avoid future incompatibility.
 EOF
                 }
            }
@@ -2064,7 +2064,7 @@ EOF
        # dependency code).
         # Properly flatten multiple adjacent slashes, as Solaris 10 make
         # might fail over them in an include statement.
-        # Leading double slashes may be special, as per Posix, so deal
+        # Leading double slashes may be special, as per POSIX, so deal
         # with them carefully.
         if ($lang && $lang->autodep ne 'no')
         {
@@ -2291,7 +2291,7 @@ sub handle_lib_objects
               # Skip -dlopen and -dlpreopen; these are explicitly allowed
               # for Libtool libraries or programs.  (Actually we are a bit
               # lax here since this code also applies to non-libtool
-              # libraries or programs, for which -dlopen and -dlopreopen
+              # libraries or programs, for which -dlopen and -dlpreopen
               # are pure nonsense.  Diagnosing this doesn't seem very
               # important: the developer will quickly get complaints from
               # the linker.)
@@ -2563,7 +2563,7 @@ sub handle_targets ()
   @ltliblist = am_install_var ('ltlib', 'LTLIBRARIES',
                               'noinst', 'lib', 'pkglib', 'check');
 
-  # Record duplications that may arise after canonicalization of the
+  # Record duplicates that may arise after canonicalization of the
   # base names, in order to prevent object file clashes in the presence
   # of target-specific *FLAGS
   my @targetlist = (@proglist, @liblist, @ltliblist);
@@ -3103,7 +3103,7 @@ sub scan_texinfo_file
          # Since @setfilename is optional nowadays, doesn't seem worth
          # the trouble to handle (which looks to be nontrivial).
          # https://bugs.gnu.org/54063
-         
+
          $outfile = $1;
          if (index ($outfile, '.') < 0)
            {
@@ -4910,7 +4910,7 @@ sub handle_per_suffix_test
     }
   # The "test driver" program, deputed to handle tests protocol used by
   # test scripts.  By default, it's assumed that no protocol is used, so
-  # we fall back to the old behaviour, implemented by the 'test-driver'
+  # we fall back to the old behavior, implemented by the 'test-driver'
   # auxiliary script.
   if (! var "${pfx}LOG_DRIVER")
     {
index 13b341b77820b8675277871dc609a5cae88e0f49..3ff08e9f28c782bd500a80482418d8a6b65a977e 100644 (file)
@@ -395,7 +395,7 @@ dnl We don't want to abort our configuration script if no C compiler is
 dnl available, as such a compiler is only required to run part of the
 dnl testsuite, not to build or install Automake.  Ditto for C++, Fortran
 dnl and Fortran 77 compilers.  Unfortunately, autoconf does not offer an
-dnl easy way to obtain this behaviour, so we'll need a few hacks.
+dnl easy way to obtain this behavior, so we'll need a few hacks.
 
 dnl We want the body of this macro to expand as a single shell statement,
 dnl thus we wrap it into { ... } brackets.
index 6be807f8772003ac21523980665049ac4c87594b..357bf4101ca72048b5a5b1e55c30bb5aa6b9852f 100755 (executable)
@@ -2879,7 +2879,7 @@ sub code_shown ($$)
 sub links_summary (\%\%\%\%)
 {
 
-    # Advices to fix the problems
+    # Advice to fix the problems
 
     my %todo = (
         200 =>
index cf5e7b48219fe0650d6607ff4c5b4eab857f7206..6e8db83d7a1f34b64e768d41c5662f1b9ed32d63 100644 (file)
@@ -688,7 +688,7 @@ facing similar troubles, for similar reasons.
 This release introduced versioned installation (@pxref{API Versioning, ,
 API Versioning, automake, GNU Automake}). This was mainly pushed by
 Havoc Pennington, taking the GNOME source tree as motive: due to
-incompatibilities between the autotools it's impossible for the GNOME
+incompatibility between the autotools it's impossible for the GNOME
 packages to switch to Autoconf 2.53 and Automake 1.5 all at once, so
 they are currently stuck with Autoconf 2.13 and Automake 1.4.
 
@@ -699,7 +699,7 @@ scheme implies maintaining a bug-fix branch in addition to the
 development trunk, which means more work from the maintainer, but
 providing regular bug-fix releases proved to be really worthwhile.
 
-Like 1.5, 1.6 also introduced a bunch of incompatibilities, intentional or
+Like 1.5, 1.6 also introduced a bunch of incompatibility, intentional or
 not.  Perhaps the more annoying was the dependence on the newly
 released Autoconf 2.53.  Autoconf seemed to have stabilized enough
 since its explosive 2.50 release and included changes required to fix
index 4f7029fff6c3773f74e1925b09449e6a8b38993e..71304293c0784eeaf22ff3dfad2e7a484243d0e4 100644 (file)
@@ -364,7 +364,7 @@ Using the TAP test protocol
 
 * Introduction to TAP::
 * Use TAP with the Automake test harness::
-* Incompatibilities with other TAP parsers and drivers::
+* Incompatibility with other TAP parsers and drivers::
 * Links and external resources on TAP::
 
 Changing Automake's Behavior
@@ -997,7 +997,7 @@ by two hosts, but compilation and installation were done separately on
 each host.
 
 The GNU Build System also supports networked setups where part of the
-installed files should be shared amongst multiple hosts.  It does so
+installed files should be shared among multiple hosts.  It does so
 by distinguishing architecture-dependent files from
 architecture-independent files, and providing two @file{Makefile}
 targets to install each of these classes of files.
@@ -1213,7 +1213,7 @@ snapshot of all the files to be installed.
 @end example
 
 After this example, @code{amhello-1.0-i686.tar.gz} is ready to be
-uncompressed in @file{/} on many hosts.  (Using @code{`cat ../files.lst`}
+decompressed in @file{/} on many hosts.  (Using @code{`cat ../files.lst`}
 instead of @samp{.} as argument for @command{tar} avoids entries for
 each subdirectory in the archive: we would not like @command{tar} to
 restore the modification time of @file{/}, @file{/usr/}, etc.)
@@ -3639,7 +3639,7 @@ Conversely to @file{dirlist}, @env{ACLOCAL_PATH} is useful if you are
 using a global copy of Automake and want @command{aclocal} to look for
 macros somewhere under your home directory.
 
-@subsubheading Planned future incompatibilities
+@subsubheading Planned future incompatibility
 
 The order in which the directories in the macro search path are currently
 looked up is confusing and/or suboptimal in various aspects, and is
@@ -9200,7 +9200,7 @@ foo.1: foo.c $(top_srcdir)/configure.ac
 
 This way, @file{foo.1} will not get rebuilt every time
 @file{foo$(EXEEXT)} changes.  The @command{make} call makes sure
-@file{foo$(EXEEXT)} is up-to-date before @command{help2man}. 
+@file{foo$(EXEEXT)} is up-to-date before @command{help2man}.
 
 Another step towards ensuring this would be to use separate
 directories for binaries and man pages, and set @code{SUBDIRS} so that
@@ -9430,8 +9430,8 @@ wildly, and we'll attempt no precise definition.
 @cindex test pass
 @cindex test failure
 A test is said to @emph{pass} when it can determine that the condition or
-behaviour it means to verify holds, and is said to @emph{fail} when it can
-determine that such condition of behaviour does @emph{not} hold.
+behavior it means to verify holds, and is said to @emph{fail} when it can
+determine that such condition of behavior does @emph{not} hold.
 
 @cindex test skip
 Sometimes, tests can rely on non-portable tools or prerequisites, or
@@ -9463,7 +9463,7 @@ special kind of failure called @emph{unexpected pass} (or @emph{xpass}).
 @cindex Distinction between errors and failures in testsuites
 Many testing environments and frameworks distinguish between test failures
 and hard errors.  As we've seen, a test failure happens when some invariant
-or expected behaviour of the software under test is not met.  A @emph{hard
+or expected behavior of the software under test is not met.  A @emph{hard
 error} happens when e.g., the set-up of a test case scenario fails, or when
 some other unexpected or highly undesirable condition is encountered (for
 example, the program under test experiences a segmentation fault).
@@ -9702,7 +9702,7 @@ serial harness (@pxref{Serial Test Harness}).
 @cindex @option{serial-tests}, Using
 
 First, note that today the use of this harness is strongly discouraged in
-favour of the parallel test harness (@pxref{Parallel Test Harness}).
+favor of the parallel test harness (@pxref{Parallel Test Harness}).
 Still, there are a @emph{few} situations when the advantages offered by
 the parallel harness are irrelevant, and when test concurrency can
 even cause tricky problems.  In those cases, it might make sense to
@@ -10180,7 +10180,7 @@ for this program.
 
 Note that the exact semantics attached to the @option{--color-tests},
 @option{--expect-failure} and @option{--enable-hard-errors} options are
-left up to the individual test drivers.  Still, having a behaviour
+left up to the individual test drivers.  Still, having a behavior
 compatible or at least similar to that provided by the default driver
 is advised, as that would offer a better consistency and a more pleasant
 user experience.
@@ -10235,7 +10235,7 @@ test; the harness will ignore such extra text when generating
 If this field is present and defined to @code{no}, then the corresponding
 test script will @emph{not} be run upon a @command{make recheck}.  What
 happens when two or more @code{:recheck:} fields are present in the same
-@file{.trs} file is undefined behaviour.
+@file{.trs} file is undefined behavior.
 
 @c Keep in sync with 'test-metadata-global-log.sh'.
 @item @code{:copy-in-global-log:}
@@ -10247,7 +10247,7 @@ of the @file{.log} file will @emph{not} be copied into the global
 it can be useful in debugging and analysis of bug report, it can also be
 just a waste of space in normal situations, e.g., when a test script is
 successful.  What happens when two or more @code{:copy-in-global-log:}
-fields are present in the same @file{.trs} file is undefined behaviour.
+fields are present in the same @file{.trs} file is undefined behavior.
 
 @c Keep in sync with 'test-metadata-global-result.sh'.
 @item @code{:test-global-result:}
@@ -10261,7 +10261,7 @@ cases, 6 of which pass and 4 of which are skipped, could reasonably have
 a @code{PASS/SKIP} value for this field, while a test script which runs
 19 successful tests and one failed test could have an @code{ALMOST
 PASSED} value.  What happens when two or more @code{:test-global-result:}
-fields are present in the same @file{.trs} file is undefined behaviour.
+fields are present in the same @file{.trs} file is undefined behavior.
 @end table
 
 @noindent
@@ -10314,7 +10314,7 @@ implementations' output might be a good idea too.
 @menu
 * Introduction to TAP::
 * Use TAP with the Automake test harness::
-* Incompatibilities with other TAP parsers and drivers::
+* Incompatibility with other TAP parsers and drivers::
 * Links and external resources on TAP::
 @end menu
 
@@ -10479,11 +10479,11 @@ PASS: baz.test 1
 exit status: 0
 @end example
 
-@node Incompatibilities with other TAP parsers and drivers
-@subsection Incompatibilities with other TAP parsers and drivers
+@node Incompatibility with other TAP parsers and drivers
+@subsection Incompatibility with other TAP parsers and drivers
 
 For implementation or historical reasons, the TAP driver and harness as
-implemented by Automake have some minor incompatibilities with the
+implemented by Automake have some minor compatibility issues with the
 mainstream versions, which you should be aware of.
 
 @itemize @bullet
@@ -10502,7 +10502,7 @@ allow this, so if you use it your diagnostic will be lost to more
 compliant tools like @command{prove} and @code{Test::Harness}
 @item
 And there are probably some other small and yet undiscovered
-incompatibilities, especially in corner cases or with rare usages.
+compatibility issues, especially in corner cases or with rare usages.
 @end itemize
 
 @node Links and external resources on TAP
@@ -12266,7 +12266,7 @@ package, regardless of the licensing you choose.
 @chapter Automake API Versioning
 
 New Automake releases usually include bug fixes and new features.
-Unfortunately they may also introduce new bugs and incompatibilities.
+Unfortunately they may also introduce new bugs and incompatibility.
 This makes four reasons why a package may require a particular Automake
 version.
 
@@ -12382,7 +12382,7 @@ missing @option{--force-missing}.
 
 Before upgrading to a new major release, it is a good idea to read the
 file @file{NEWS}.  This file lists all changes between releases: new
-features, obsolete constructs, known incompatibilities, and
+features, obsolete constructs, known incompatibility, and
 workarounds.
 
 @node FAQ
@@ -12456,7 +12456,7 @@ of @file{configure}.
 @cindex CVS and generated files
 @cindex generated files and CVS
 
-There are basically two clans amongst maintainers: those who keep all
+There are basically two clans among maintainers: those who keep all
 distributed files under CVS, including generated files, and those who
 keep generated files @emph{out} of CVS.
 
@@ -12521,7 +12521,7 @@ touch doc/*.info
 @item
 In distributed development, developers are likely to have different
 versions of the maintainer tools installed.  In this case rebuilds
-triggered by timestamp lossage will lead to spurious changes
+triggered by clock skew will lead to spurious changes
 to generated files.  There are several solutions to this:
 
 @itemize
@@ -12650,7 +12650,7 @@ The user can override the default setting by passing either
 to @command{configure}.
 
 People use @code{AM_MAINTAINER_MODE} either because they do not want their
-users (or themselves) annoyed by timestamp lossage (@pxref{CVS}), or
+users (or themselves) annoyed by clock skew (@pxref{CVS}), or
 because they simply can't stand the rebuild rules and prefer running
 maintainer tools explicitly.
 
@@ -13785,7 +13785,7 @@ attach the @file{test-suite.log} file.
 @c  LocalWords:  yylhs yylen yydefred yydgoto yysindex yyrindex yygindex yyname
 @c  LocalWords:  yytable yycheck yyrule byacc CXXCOMPILE CXXLINK FLINK cfortran
 @c  LocalWords:  Catalogue preprocessable FLIBS libfoo baz JAVACFLAGS java exe
-@c  LocalWords:  SunOS fying basenames exeext uninstalled oldinclude kr FSF's
+@c  LocalWords:  SunOS basenames exeext uninstalled oldinclude kr FSF's
 @c  LocalWords:  pkginclude oldincludedir sysconf sharedstate localstate gcc rm
 @c  LocalWords:  sysconfdir sharedstatedir localstatedir preexist CLEANFILES gz
 @c  LocalWords:  depfile tmpdepfile depmode const interoperate
index f3c208aedb982c50597236cdd3cd8cbc167ba58c..cc4f21984c20630527fe0af16f8397bb3145e3f4 100644 (file)
@@ -34,11 +34,11 @@ CLEANFILES += $(man1_MANS)
 # In automake, users generate man pages as part of a normal build from
 # release tarballs. This is ok because we also distribute the help2man
 # script, as given below.
-# 
+#
 # Autoconf handles this in an alternative way, of including the man
 # pages in the tarballs and thus not requiring help2man to be run by
 # users (q.v.). Neither is better or worse than the other.
-# 
+#
 # See the "Errors with distclean" node in the manual for more info.
 
 # XXX: The help2man script we include in the Automake distribution
index bb0ae0bb0686d954ba69bfc91a6be8b81c799081..e94bb8c6a7cdc1d0bd85308ac9ec11b93ed09feb 100644 (file)
@@ -15,7 +15,7 @@
 
 ##################################################################
 # The master copy of this file is in Automake's source repository.
-# Please send updates to automake-patches@gnu.org.          
+# Please send updates to automake-patches@gnu.org.
 ##################################################################
 
 package Automake::ChannelDefs;
@@ -451,8 +451,8 @@ sub merge_WARNINGS (@)
         {
           # The character class in the second match group is ASCII \S minus
           # comma.  We are generous with this because category values may come
-          # from WARNINGS and we don't want to assume what other programs'
-          # syntaxes for warnings categories are.
+          # from WARNINGS and we don't want to assume other programs'
+          # syntax for warnings categories.
           /^(no-|)([\w\[\]\/\\!"#$%&'()*+-.:;<=>?@^`{|}~]+)$/
             or die "Invalid warnings category: $_";
           $warnings{$2} = $1;
index de6020a6e3301c1dd9c40a1aa179a45fe958553f..adb6b2224b2f4fcf5e4cbc08104bd875bdfa9de4 100644 (file)
@@ -15,7 +15,7 @@
 
 ##################################################################
 # The master copy of this file is in Automake's source repository.
-# Please send updates to automake-patches@gnu.org.          
+# Please send updates to automake-patches@gnu.org.
 ##################################################################
 
 package Automake::Channels;
index 9c68935701c0c2c3bf29e405c29fe852c6baf7af..03460b42773b9624f0df8bb5d4b5a2d4b2f4d394 100644 (file)
@@ -313,7 +313,7 @@ sub true ($ )
 
 Build a string which denotes the condition.
 
-For instance using the C<$cond> definition from L<SYNOPSYS>,
+For instance using the C<$cond> definition from L<SYNOPSIS>,
 C<$cond-E<gt>string> will return C<"COND1_TRUE COND2_FALSE">.
 
 =cut
@@ -341,7 +341,7 @@ sub string ($ )
 
 Build a human readable string which denotes the condition.
 
-For instance using the C<$cond> definition from L<SYNOPSYS>,
+For instance using the C<$cond> definition from L<SYNOPSIS>,
 C<$cond-E<gt>string> will return C<"COND1 and !COND2">.
 
 =cut
@@ -382,7 +382,7 @@ sub human ($ )
 
 Build a C<AC_SUBST>-style string for output in F<Makefile.in>.
 
-For instance using the C<$cond> definition from L<SYNOPSYS>,
+For instance using the C<$cond> definition from L<SYNOPSIS>,
 C<$cond-E<gt>subst_string> will return C<"@COND1_TRUE@@COND2_FALSE@">.
 
 =cut
@@ -411,7 +411,7 @@ sub subst_string ($ )
 Return 1 iff C<$cond> is true when C<$when> is true.
 Return 0 otherwise.
 
-Using the definitions from L<SYNOPSYS>, C<$cond> is true
+Using the definitions from L<SYNOPSIS>, C<$cond> is true
 when C<$both> is true, but the converse is wrong.
 
 =cut
index 825848f4ac6a24dca1124354774fdbe50c736807..cedb33797877aa6e591cca33d6587bdd43ea05ed 100644 (file)
@@ -15,7 +15,7 @@
 
 ##################################################################
 # The master copy of this file is in Automake's source repository.
-# Please send updates to automake-patches@gnu.org.          
+# Please send updates to automake-patches@gnu.org.
 ##################################################################
 
 package Automake::Configure_ac;
index 31c61048e65dbb16537bd6abfc1cc9486bb37dd3..bc5b24a38ce21a446a940d4255ce0211e10555ce 100644 (file)
@@ -15,7 +15,7 @@
 
 ##################################################################
 # The master copy of this file is in Automake's source repository.
-# Please send updates to automake-patches@gnu.org.          
+# Please send updates to automake-patches@gnu.org.
 ##################################################################
 
 package Automake::FileUtils;
index 8f6458ede39331ac74c745e554884eec5d75db42..a200599401830f1e912e5871618760992b3062ff 100644 (file)
@@ -15,7 +15,7 @@
 
 ##################################################################
 # The master copy of this file is in Automake's source repository.
-# Please send updates to automake-patches@gnu.org.          
+# Please send updates to automake-patches@gnu.org.
 ##################################################################
 
 package Automake::Getopt;
index 62dfa9b9411d0f5f10774fe684a3585c4943d04b..db1f6378d52cb594e98a4408c91e744bc0bd4b64 100644 (file)
@@ -333,7 +333,7 @@ sub variables (;$)
     {
       @vars = values %_variable_dict;
     }
-  # The behaviour of the 'sort' built-in is undefined in scalar
+  # The behavior of the 'sort' built-in is undefined in scalar
   # context, hence we need an ad-hoc handling for such context.
   return wantarray ? sort { $a->name cmp $b->name } @vars : scalar @vars;
 }
index 81af13e3860cee7269ec41eb089611b086c94304..fb191550b7631e6fb1808dc12d618fb412ff84e5 100644 (file)
@@ -17,7 +17,7 @@
 
 ##################################################################
 # The master copy of this file is in Automake's source repository.
-# Please send updates to automake-patches@gnu.org.          
+# Please send updates to automake-patches@gnu.org.
 ##################################################################
 
 package Automake::XFile;
index b6fa3aaad37ac88fc8002eadd3fe874988b56c17..a506d1c7997f720bd53f291ca5a9233bbb017615 100644 (file)
@@ -361,7 +361,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
          result_count $$1 "ERROR:" $$error "$$mgn"; \
        }; \
 ##
-## Function to write some basic system info in the log. 
+## Function to write some basic system info in the log.
        output_system_information () \
        { \
 ## Omit the hostname for privacy.  In practice it's a single word?
index a9280d56ab8a0d64daaa781865e22733698fe4da..98734d83e66641bc3101a2c5b81d3ac409538fdc 100644 (file)
@@ -75,7 +75,7 @@ am__make_running_with_option = \
 ## variable $(MFLAGS) behaves much better in that regard.  So use it.
     sane_makeflags=$$MFLAGS; \
   else \
-## Non-GNU make: we must rely on $(MAKEFLAGS).  This is tricker and more
+## Non-GNU make: we must rely on $(MAKEFLAGS).  This is trickier and more
 ## brittle, but is the best we can do.
     case $$MAKEFLAGS in \
 ## If we run "make TESTS='snooze nap'", FreeBSD make will export MAKEFLAGS
index fc2165bcf35195aca02770db090137dceb767cf6..5ed189e2063fd8c0748b6a87596afcec75003349 100644 (file)
@@ -43,7 +43,7 @@ if %?BASE%
        test -z "$$list2" || { \
          echo " $(MKDIR_P) '$(DESTDIR)$(%NDIR%dir)'"; \
          $(MKDIR_P) "$(DESTDIR)$(%NDIR%dir)" || exit 1; \
-## Note that we explicitly set the libtool mode.  This avoids any lossage
+## Note that we explicitly set the libtool mode.  This avoids problems
 ## if the program doesn't have a name that libtool expects.
 ## Use INSTALL and not INSTALL_DATA because libtool knows the right
 ## permissions to use.
@@ -69,7 +69,7 @@ else !%?BASE%
            test "x$$dir" = x. || { \
              echo " $(MKDIR_P) '$(DESTDIR)$(%NDIR%dir)/$$dir'"; \
              $(MKDIR_P) "$(DESTDIR)$(%NDIR%dir)/$$dir"; }; \
-## Note that we explicitly set the libtool mode.  This avoids any lossage
+## Note that we explicitly set the libtool mode.  This avoids problems
 ## if the program doesn't have a name that libtool expects.
 ## Use INSTALL and not INSTALL_DATA because libtool knows the right
 ## permissions to use.
index 8ce3152029e16f1ca27d4fda3fe42b7ac74549a3..d53ecd88493f70ba2c0b546ab8758ce46612e734 100644 (file)
@@ -64,8 +64,8 @@ install-%DIR%PROGRAMS: $(%DIR%_PROGRAMS)
            test -z "$$files" || { \
 ?!LIBTOOL?           echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(%NDIR%dir)$$dir'"; \
 ?!LIBTOOL?           $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(%NDIR%dir)$$dir" || exit $$?; \
-## Note that we explicitly set the libtool mode.  This avoids any
-## lossage if the install program doesn't have a name that libtool
+## Note that we explicitly set the libtool mode.  This avoids
+## problems if the install program doesn't have a name that libtool
 ## expects.
 ?LIBTOOL?          echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(%NDIR%dir)$$dir'"; \
 ?LIBTOOL?          $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(%NDIR%dir)$$dir" || exit $$?; \
index 2f1d24a2aaa67aa563b4a17d38702a77d9bfa9f9..4ade066242fa32ff553fbc64343fff2f7f25e01e 100755 (executable)
@@ -1,7 +1,7 @@
 #! /bin/sh
 # depcomp - compile a program generating dependencies as side-effects
 
-scriptversion=2023-11-23.18; # UTC
+scriptversion=2024-06-07.03; # UTC
 
 # Copyright (C) 1999-2024 Free Software Foundation, Inc.
 
@@ -129,7 +129,7 @@ tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
 
 rm -f "$tmpdepfile"
 
-# Avoid interferences from the environment.
+# Avoid interference from the environment.
 gccflag= dashmflag=
 
 # Some modes work just like other modes, but use different flags.  We
index 60447d4f5c327e181372e23e26eb7e1e5271635d..b888de4f8ca3ea51e9c68470c580eb27f68d000d 100755 (executable)
@@ -2,7 +2,7 @@
 # gendocs.sh -- generate a GNU manual in many formats.  This script is
 #   mentioned in maintain.texi.  See the help message below for usage details.
 
-scriptversion=2024-01-27.16
+scriptversion=2024-06-07.07
 
 # Copyright 2003-2024 Free Software Foundation, Inc.
 #
@@ -437,7 +437,7 @@ d=`dirname $srcfile`
     done
 
     # if $MAKEINFO is recent enough, use --trace-includes on the
-    # $srcfile to get the included files of the targetted manual only
+    # $srcfile to get the included files of the targeted manual only
     base=`basename "$srcfile"`
 
     cmd="$SETLANG $MAKEINFO $commonarg --trace-includes \"$base\""
index 7c56c9c015103600a06f59ab1183eb3966a513ab..e0af0fe2feb9c32c5cc36ec84211a520a0072d88 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 # install - install a program, script, or datafile
 
-scriptversion=2023-11-23.18; # UTC
+scriptversion=2024-06-07.14; # UTC
 
 # This originates from X11R5 (mit/util/scripts/install.sh), which was
 # later released in X11R6 (xc/config/util/install.sh) with the
@@ -345,7 +345,7 @@ do
        ' 0
 
        # Because "mkdir -p" follows existing symlinks and we likely work
-       # directly in world-writeable /tmp, make sure that the '$tmpdir'
+       # directly in world-writable /tmp, make sure that the '$tmpdir'
        # directory is successfully created first before we actually test
        # 'mkdir -p'.
        if (umask $mkdir_umask &&
@@ -353,7 +353,7 @@ do
            exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
        then
          if test -z "$dir_arg" || {
-              # Check for POSIX incompatibilities with -m.
+              # Check for POSIX incompatibility with -m.
               # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
               # other-writable bit of parent directory when it shouldn't.
               # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
index cd3da82496f757cef2e6fb2b7394ec15c71a39fd..303e65563056f18e474e755dfc810ffecc5b7ce5 100755 (executable)
@@ -1,7 +1,7 @@
 #! /bin/sh
 # Common wrapper for a few potentially missing GNU and other programs.
 
-scriptversion=2024-05-29.18; # UTC
+scriptversion=2024-06-07.14; # UTC
 
 # shellcheck disable=SC2006,SC2268 # we must support pre-POSIX shells
 
@@ -56,7 +56,7 @@ Options:
   -v, --version   output version information and exit
 
 Supported PROGRAM values:
-aclocal autoconf autogen  autoheader autom4te automake autoreconf 
+aclocal autoconf autogen  autoheader autom4te automake autoreconf
 bison   flex     help2man lex        makeinfo perl     yacc
 
 Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
index 69121683a26efc23467b2c067dfe4316b0f0cd94..01d362fa5d003c26fee9c3c7c266f38477cddfba 100755 (executable)
@@ -124,7 +124,7 @@ fi
     # problems with Korn shells.  Some Korn shells are known to propagate
     # to themselves signals that have killed a child process they were
     # waiting for; this is done at least for SIGINT (and usually only for
-    # it, in truth).  Without the `trap' below, such a behaviour could
+    # it, in truth).  Without the `trap' below, such a behavior could
     # cause a premature exit in the current subshell, e.g., in case the
     # test command it runs gets terminated by a SIGINT.  Thus, the awk
     # script we are piping into would never seen the exit status it
@@ -462,7 +462,7 @@ function get_test_exit_message(status)
     # We used to report an "abnormal termination" here, but some Korn
     # shells, when a child process die due to signal number n, can leave
     # in $? an exit status of 256+n instead of the more standard 128+n.
-    # Apparently, both behaviours are allowed by POSIX (2008), so be
+    # Apparently, both behaviors are allowed by POSIX (2008), so be
     # prepared to handle them both.  See also Austin Group report ID
     # 0000051 <http://www.austingroupbugs.net/view.php?id=51>
     exit_details = sprintf(" (terminated by signal %d?)", status - 256)
@@ -578,7 +578,7 @@ while (1)
     # Older versions of prove and TAP::Harness (e.g., 3.17) did not
     # recognize a "Bail out!" directive when preceded by leading
     # whitespace, but more modern versions (e.g., 3.23) do.  So we
-    # emulate the latter, "more modern" behaviour.
+    # emulate the latter, "more modern" behavior.
     else if ($0 ~ /^[ \t]*Bail out!/)
       {
         bailed_out = 1
index 9ab9b29654031999e79c91d75b55a4806367dbf6..49f6d493b1feec7d16c991303b1f6709227c9bf4 100644 (file)
@@ -131,7 +131,7 @@ AC_CACHE_CHECK([dependency style of $depcc],
       # icc doesn't choke on unknown options, it will just issue warnings
       # or remarks (even with -Werror).  So we grep stderr for any message
       # that says an option was ignored or not supported.
-      # When given -MP, icc 7.0 and 7.1 complain thusly:
+      # When given -MP, icc 7.0 and 7.1 complain thus:
       #   icc: Command line warning: ignoring option '-M'; no argument required
       # The diagnosis changed in icc 8.0:
       #   icc: Command line remark: option '-MP' not supported
index 4dd09cb36f14c0526cc90170cff9c4a60a14fc3b..640f7c0fa09db7abb8cfdfc071db7d3ddfa5eeb0 100644 (file)
@@ -1,6 +1,6 @@
 ## ----------------------------------- ##                   -*- Autoconf -*-
 ## Check if --with-dmalloc was given.  ##
-## From Franc,ois Pinard               ##
+## From François Pinard                ##
 ## ----------------------------------- ##
 
 # Copyright (C) 1996-2024 Free Software Foundation, Inc.
index 4504ef87878de0df840278bab7d14deb5c4184f0..09489ffaa579b38f770ea208720fab66eda2c538 100644 (file)
@@ -94,7 +94,7 @@ for am_try_res in $am_try_resolutions; do
     # It can happen that everything else supports the subsecond mtimes,
     # but make doesn't, notably on macOS, which ships make 3.81 from
     # 2006 (the last one released under GPLv2). https://bugs.gnu.org/68808
-    # 
+    #
     # So, first let's create a Makefile:
     rm -f conftest.mk
     echo 'conftest.ts1: conftest.ts2' >conftest.mk
@@ -105,7 +105,7 @@ for am_try_res in $am_try_resolutions; do
     # should touch ts1 because ts2 is newer. This could happen by luck,
     # but most often, it will fail if make's support is insufficient. So
     # test for several consecutive successes.
-    # 
+    #
     # (We reuse conftest.ts[12] because we still want to modify existing
     # files, not create new ones, per above.)
     n=0
index e10f9fd2a3c9f2612e1a228990a96859772f8a5f..4b8d44aa6d8fcdef5464d84ff6920be18dec346f 100644 (file)
@@ -503,7 +503,7 @@ files_without_copyright += lib/mkinstalldirs
 # This script has an MIT-style license
 files_without_copyright += lib/install-sh
 
-# The UPDATE_COPYRIGHT_YEAR environment variable is honoured by the
+# The UPDATE_COPYRIGHT_YEAR environment variable is honored by the
 # 'lib/update-copyright' script.
 .PHONY: update-copyright
 update-copyright:
index 4ef641002cec4007460810731c3d9bdf6b327dc3..f25536ea5c5693c017c4776f332461d8b41349e6 100644 (file)
 
        * m4/multi.m4: Added missing `]'.  From Akim Demaille.
 
-       * Makefile.am (path-check): Make sure distdir is writeable before
+       * Makefile.am (path-check): Make sure distdir is writable before
        removing it.
        * automake.in (handle_texinfo): Added `cm' and `ov' extensions.
-       (handle_dist_worker): Make sure distdir is writeable before
+       (handle_dist_worker): Make sure distdir is writable before
        removing it.
        (initialize_global_constants [$dist_trailer]): Make sure distdir
-       is writeable before removing it.
+       is writable before removing it.
        * dist.am (distcheck): Make the new source tree read-only before
        compiling.  Idea from Karl Berry.
 
index a72e799fae89a63eeb8ae23fd661378415b3e1f0..6f4179852e9d9d5608da941f96049723a72739a0 100644 (file)
        * lib/Makefile.am (dist_script_DATA): Move config-ml.in ...
        (dist_pkgvdata_DATA): ... here.
 
-       * tests/spy.test: Document overlapping ::-rules incompatibilities,
+       * tests/spy.test: Document overlapping ::-rules incompatibility,
        and check only non-overlapping ::-rules.
 
        * doc/automake.texi (Texinfo): Define MAKEINFO, MAKEINFOHTML,
 2003-04-03  Alexandre Duret-Lutz  <adl@gnu.org>
 
        * automake.in (check_trailing_slash): New function (variation on
-       a patch by Peter Muir).  Diagnose whitespaces following trailing
+       a patch by Peter Muir).  Diagnose whitespace following trailing
        backslash.
        (read_am_file): Use it.
        * tests/backsl4.test: New file.
index 4c318b63ed10811ee0aec520a964e6cc762e7aa6..b9c55fe01765576d792b2a44f9cc3fac18fae801 100644 (file)
 
 2009-09-06  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
 
-       tests/README: warn about zsh incompatibilities.
+       tests/README: warn about zsh incompatibility.
        * tests/README (User interface, Getting details from failures):
        Explicitly state that every test is a "shell script", not just
        a "script", and that it's run by `/bin/sh' by default.
        Fix portability issues in distcleancheck_listfiles doc example.
        * doc/automake.texi (Dist): In the `distcleancheck_listfiles'
        code example, add `.' path, for Solaris `find', also rewrite so
-       `{}' appears only once and as separate argument, for Posix.
+       `{}' appears only once and as separate argument, for POSIX.
        * tests/distcleancheck.test: New test.
        * tests/Makefile.am: Update.
        * THANKS: Update.
        * automake.in (%_macro_for_cond): New variable.
        (cond_stack_if): Use it for better error message about
        missing dependency tracking conditionals.
-       * tests/asm2.test: New test, modelled after asm.test.
+       * tests/asm2.test: New test, modeled after asm.test.
        * tests/Makefile.am: Adjust.
        Report by Ralf Corsepius.
 
        Don't use 'path' to talk about file names,
        as per GNU coding standards.  Close a race condition reported by Ralf
        Wildenhues and Stepan Kasal.  There is still a race condition
-       on hosts that predate Posix 1003.1-1992, but we can't help this.
-       Don't mishandle weird characters like space on pre-Posix hosts.
-       Invoke mkdir at most once per dir arg on pre-Posix hosts.
+       on hosts that predate POSIX 1003.1-1992, but we can't help this.
+       Don't mishandle weird characters like space on pre-POSIX hosts.
+       Invoke mkdir at most once per dir arg on pre-POSIX hosts.
 
 2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
 2006-01-12  Paul Eggert  <eggert@cs.ucla.edu>
 
        * lib/install-sh (dstdir): Don't use semicolons inside { } in
-       sed scripts, as Posix says it's not portable.
+       sed scripts, as POSIX says it's not portable.
        * lib/missing (file): Likewise.
        * lib/am/distdir.am (distcheck): Likewise.
        * tests/comment7.test, tests/comment9.test, tests/confh.test: Likewise
        * tests/pr401.test, tests/pr401b.test, tests/pr401c.test: New tests.
        * tests/Makefile.am (TESTS): Add them.
        * doc/automake.texi (Optional) <AC_CONFIG_LIBOBJ_DIR>: Document.
-       (LIBOBJS): Document changes in behaviour of
+       (LIBOBJS): Document changes in behavior of
        LIBOBJS, ALLOCA, LTLIBOBJS & LTALLOCA in the presence of
        subdir-objects and an invocation of AC_CONFIG_LIBOBJ_DIR.
 
index 7aa45e115648883d7e7fc66a8fece3aa4391be49..78c04e0268a9a31e22398b38cb70686faff0fcc2 100644 (file)
        was better to do so only for directories specified with a
        relative path.
 
-       The rationale for this latter behaviour was that, before the
+       The rationale for this latter behavior was that, before the
        existence of the `ACLOCAL_PATH' variable, the only way (a poor
        way, I might add) for a common user to extend the search path
        of a system-wide installation of aclocal was to export something
        like ACLOCAL="aclocal -I /my/extra/macros" in the environment.
        Today, the correct way to proceed is undoubtedly through the
        use of ACLOCAL_PATH, so we can settle the question once and for
-       all, and start verifying the correct behaviour of `-I' with a
+       all, and start verifying the correct behavior of `-I' with a
        new test.
 
        * tests/aclocal-install-absdir.test: New test.
          $ echo status = $?
          status = 1
 
-       We need to work around this misbehaviour in a couple of our
+       We need to work around this misbehavior in a couple of our
        tests (whose failures where causing cascading failures in a
        lot of other tests).
 
        tests was usually skipped on testsuite runs "in the wild", thus
        needlessly reducing coverage.
 
-       Second, the older testsuite behaviour made more difficult for
+       Second, the older testsuite behavior made more difficult for
        the developers to run the testsuite with non-default libtool or
        gettext.  For example, assume the developer is working on a system
        that has a default libtool version 1.5 installed in the /usr/local
        memory requirement on any client that wants to decompress your
        tar.xz file.
        People have complained that a tarball compressed with -9 cannot
-       be uncompressed in a low-memory environment (wrt-based embedded).
+       be decompressed in a low-memory environment (wrt-based embedded).
        Hence, instead of defaulting to -9, which is useful only for very
        large tarballs, it defaults to -e (equivalent to -6e).  This
        limits the default memory requirements imposed on decompressors,
        proceeds with the configuration process -- only for the build to
        possibly fail later, at make time.
 
-       This behaviour is intended; the Autoconf manual reads:
+       This behavior is intended; the Autoconf manual reads:
         ``You are encouraged to use Flex in your sources, since it is
           both more pleasant to use than plain Lex and the C source it
           produces is portable.  In order to ensure portability, however,
           it (e.g., your scanner has no `#include'-like feature), simply
           include a `%noyywrap' statement in the scanner's source.''
 
-       This AC_PROG_LEX behaviour is causing some spurious failures of
+       This AC_PROG_LEX behavior is causing some spurious failures of
        the Automake testsuite in environments which lack a proper library
        providing `yywrap' (this happens for example on Fedora-based
        systems).   The proper workaround is to simply provide a fall-back
        This change fixes automake bug#9773.  See also Debian Bug#543992.
        * lib/am/texinfos.am: Don't look anymore at the output of
        `install-info --version' to decide whether to use it to update
-       the `${infodir}/dir' or not; instead, honour the environment
+       the `${infodir}/dir' or not; instead, honor the environment
        variable `AM_UPDATE_INFO_DIR'.
        * tests/install-info-dir.test: New test.
        * tests/Makefile.am (TESTS): Add it.
        * tests/defs: Also unset `AM_UPDATE_INFO_DIR', to avoid unwanted
-       interferences from the environment.
+       interference from the environment.
        * doc/automake.texi (Texinfo): Update.
        * NEWS: Likewise.
        * THANKS: Likewise.
        proceeds with the configuration process -- only for the build to
        possibly fail later, at make time.
 
-       This behaviour is intended; the Autoconf manual reads:
+       This behavior is intended; the Autoconf manual reads:
         ``You are encouraged to use Flex in your sources, since it is
           both more pleasant to use than plain Lex and the C source it
           produces is portable.  In order to ensure portability, however,
           it (e.g., your scanner has no `#include'-like feature), simply
           include a `%noyywrap' statement in the scanner's source.''
 
-       This AC_PROG_LEX behaviour is causing some spurious failures of
+       This AC_PROG_LEX behavior is causing some spurious failures of
        the Automake testsuite in environments which lack a proper library
        providing `yywrap' (this happens for example on Fedora-based
        systems).   The proper workaround is to simply provide a fall-back
 
 2011-09-28  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
-       tap/awk: account for unusual korn shell signal handling behaviour
+       tap/awk: account for unusual korn shell signal handling behavior
        This change has been motivated by a testsuite failure on Debian
        with the AT&T Korn Shell version 93u-1.
        * lib/tap-driver.sh: Temporarily ignore some common signals when
        tap/awk: handle exit statuses > 256 (seen on few korn shells)
        Some Korn shells, when a child process die due to signal number
        n, can leave in $? an exit status of 256+n instead of the more
-       standard 128+n.  Apparently, both behaviours are allowed by
+       standard 128+n.  Apparently, both behaviors are allowed by
        POSIX, so be prepared to handle them both.
        This change has been motivated by a testsuite failure on Debian
        with the AT&T Korn Shell version 93u-1.
        * lib/tap-driver.sh (get_test_exit_message): Handle the described
-       Korn Shell behaviour too.
+       Korn Shell behavior too.
        ($scriptversion): Update.
 
 2011-09-28  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
 2011-09-13  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
-       test defs: work around weird ksh behaviour w.r.t. signal handling
+       test defs: work around weird ksh behavior w.r.t. signal handling
        * tests/defs (is_blocked_signal): Use perl to determine whether a
        signal is trapped, since trying to do it portably within the shell
        means opening a nasty can of worms.
        testsuite: different test scripts cannot share the same basename
        If two test scripts have the same basename, they will end up
        sharing the same log file, leading to all sort of undefined and
-       undesired behaviours.  Add a Makefile check verifying that this
+       undesired behaviors.  Add a Makefile check verifying that this
        is not the case.
        * tests/test-logs-repeated.test: New test, verifying previously
        unspecified semantics (in the definition of $(TEST_LOGS) from
        e.g. syntax or I/O errors) to the log files instead that to the
        console.
        * tests/tap-driver-stderr.test: New test, verifying the improved
-       driver behaviour.  Notice that this test still fails when using
+       driver behavior.  Notice that this test still fails when using
        the perl implementation of the TAP driver.
        * tests/Makefile.am (tap_other_tests): Update.
 
        coverage: a TAP result numbered "0" is always out-of-order
        * tests/tap-test-number-0.test: New, checks that a test result
        numbered as 0 is to be considered out-of-order; this is
-       consistent with the behaviour of the `prove' utility.
+       consistent with the behavior of the `prove' utility.
        * tests/Makefile.am (tap_with_common_setup_tests): Update.
 
 2011-08-20  Stefano Lattarini  <stefano.lattarini@gmail.com>
        `configure.in'.
        * tests/vpath.test: Make grepping of generated `Makefile.in'
        slightly stricter.  Prefer trailing `:' over trailing `Exit 0'.
-       * tests/suffix6c.test: Unset OBJEXT to avoid interferences from
+       * tests/suffix6c.test: Unset OBJEXT to avoid interference from
        the environment.
        * tests/suffix12.test: Do not whitespace-indent `##' comments
        when they are embedded in a makefile rule: having them indented
 2011-08-12  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        coverage: TAP diagnostics after "Bail out!" aren't reported
-       This is compatible with the behaviour of the `prove' utility.
+       This is compatible with the behavior of the `prove' utility.
        * tests/tap-bailout-suppress-later-diagnostic.test: New test.
        * tests/Makefile.am (tap_with_common_setup_tests): Update.
 
 2011-08-12  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        coverage: TAP errors after a "Bail out!" directive aren't reported
-       This is compatible with the behaviour of the `prove' utility.
+       This is compatible with the behavior of the `prove' utility.
        * tests/tap-bailout-suppress-later-errors.test: New test.
        * tests/tap-bailout-badexit.test: Renamed ...
        * tests/tap-bailout-suppress-badexit.test: ... to this, for
 2011-08-12  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        tap: non-zero exit status after "Bail out!" should not be reported
-       This new behaviour is more consistent with that of the `prove'
+       This new behavior is more consistent with that of the `prove'
        utility.  Also, experience with the use of TAP in the Automake's
        own test suite has shown that reporting non-zero exit status from
        a script after it has issued a "Bail out!" directive is mostly
 2011-08-11  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        tap: a "plan with SKIP" after test results is an error
-       This new behaviour is both more natural and more consistent with
+       This new behavior is both more natural and more consistent with
        that of the `prove' utility.
        * lib/tap-driver (handle_tap_plan): Do not stop TAP parsing when
        a "plan with SKIP" line (e.g., "1..0 # SKIP") is encountered, and
          ok 1
        was considered to be an error, diagnosed with a message "test
        plan in middle of output"; as effect of the current change, such
-       input is now valid.  This is more consistent with the behaviour
+       input is now valid.  This is more consistent with the behavior
        of the `prove' utility.
        * lib/tap-driver ($lineno): Removed, no more needed.
        ($tap_stopped): New global variable.
 
        tap: fix whitespace munging of diagnostic messages
        * lib/tap-driver (extract_tap_comment): Pass the `g' flag to the
-       substitution operator, to strip also trailing whitespaces.  Fixes
+       substitution operator, to strip also trailing whitespace.  Fixes
        a failure in test `tap-whitespace-normalization.test'.
 
 2011-08-06  Stefano Lattarini  <stefano.lattarini@gmail.com>
        format of the `.log' files.  Note that this change makes the
        `:end-metadata:' field obsolete.
        * doc/automake.texi (Parallel Test Harness, Log files generation
-       and test results recording): Document the new APIs and behaviour;
+       and test results recording): Document the new APIs and behavior;
        some related minor rewordings and fixlets.
        * NEWS: Update.
        * automake.in (handle_tests): When bringing in the content of
        * tests/parallel-tests-fd-redirect.test: Likewise.
        * tests/parallel-tests-am_tests_environment.test: Remove checks
        about the use of redirections in AM_TESTS_ENVIRONMENT: they would
-       check deprecated (if not undefined) behaviour now.  Strengthen a
+       check deprecated (if not undefined) behavior now.  Strengthen a
        couple of still valid checks, to keep the test more in sync with
        the documentation.  Improve debugging information.
        * tests/Makefile.am (TESTS): Update.
        moved into the manual.
        (recheck, recheck-html): Minor adjustments to better conform to the
        documentation (this should cause no semantic changes w.r.t. the
-       former behaviour); minor improvements and extensions to existing
+       former behavior); minor improvements and extensions to existing
        comments.
        * tests/test-driver-create-log-dir.test: New test.
        * tests/test-driver-strip-vpath.test: Likewise.
        define (in the top-level Makefile.am) extra flags to be passed
        to configure at "make distcheck" time; DISTCHECK_CONFIGURE_FLAGS
        should be reserved for the user.  Add proper `@vindex' directive.
-       Document that AM_DISTCHECK_CONFIGURE_FLAGS is not honoured in a
+       Document that AM_DISTCHECK_CONFIGURE_FLAGS is not honored in a
        subpackage Makefile.am, but the flags in it are passed down to
        the configure script of the subpackage.
        * lib/am/distdir.am (distcheck): Also pass the flags in
 
 2011-05-29  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
-       automake, aclocal: honour configure-time AUTOCONF and AUTOM4TE
+       automake, aclocal: honor configure-time AUTOCONF and AUTOM4TE
        Currently, the Automake's own configure script allow definition
        of AUTOCONF and AUTOM4TE, expected to point respectively to an
        autoconf and autom4te programs.  But while these definitions are
-       honoured in the Automake's build systems and test suite, they
-       were *not* honoured in the generated `automake' and `aclocal'
-       scripts.  This behaviour, apart from being wrong in that it does
+       honored in the Automake's build systems and test suite, they
+       were *not* honored in the generated `automake' and `aclocal'
+       scripts.  This behavior, apart from being wrong in that it does
        not allow the user enough freedom in choosing his tools, also
        caused inconsistencies in the test suite, brining to spurious
        failures.
 
        build: the user can override AUTOM4TE, AUTORECONF and AUTOUPDATE too
        Our build system allows the user to override AUTOCONF and AUTOHEADER
-       at configure time, and honours these overrides in our testsuite.
+       at configure time, and honors these overrides in our testsuite.
        But it didn't do the same with AUTOM4TE, AUTORECONF and AUTOUPDATE.
        This change fixes that inconsistency.
        * configure.ac (am_AUTOM4TE, am_AUTOUPDATE, am_AUTORECONF): New
        fail, configure declares that no lex library is needed, and simply
        proceeds with the configuration process -- only for the build to
        possibly fail later, at make time.
-       This behaviour might be (partly) intended; the Autoconf manual
+       This behavior might be (partly) intended; the Autoconf manual
        reads:
         ``You are encouraged to use Flex in your sources, since it is
           both more pleasant to use than plain Lex and the C source
           you don't use it (e.g., your scanner has no `#include'-like
           feature), simply include a `%noyywrap' statement in the
           scanner's source.''
-       This AC_PROG_LEX behaviour is causing some spurious failures of the
+       This AC_PROG_LEX behavior is causing some spurious failures of the
        Automake testsuite in environments which lack a proper library
        providing `yywrap' (this happens for example in Linux->MinGW cross
        compilations).  But at this point is clear that a proper workaround
        is passed to the exit trap.  Indeed, this happens in practice, as
        an autoconf-generated configure script can exit with status `77'
        if it fails to find, e.g., a required compiler.
-       While this behaviour is quite useful for avoiding spurious test
+       While this behavior is quite useful for avoiding spurious test
        failures in the wild, it can also sometimes prevent the Automake
        developers to easily see and declare the requirements of their
        tests.
        * tests/gen-parallel-tests: Do not generate "siblings" for tests
        that explicitly define the `parallel_tests', whether to "yes" or
        to any other value.  Extend heading comments to give a rationale
-       for this behaviour.
+       for this behavior.
        * tests/README: Update.
 
 2011-05-20  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        depmod tests: fix bug in depmodes list extraction
        * tests/depmod-tests.sh (get_depmodes): Use `echo $all_depmodes'
-       instead of `... | tr "$nl" "$sp"' to strip extra whitespaces and
+       instead of `... | tr "$nl" "$sp"' to strip extra whitespace and
        newlines from `$all_depmodes'.  The latter idiom with `tr' is
        wrong since it gets run before `./defs' is sourced, and thus `$nl'
        and `$sp' are undefined.
        testsuite: more environment sanitization
        * tests/defs.in: Sanity check: abort if any of `parallel_tests'
        or `required' is in the environment.
-       ($sed_unindent_prog): Initialize to empty, to avoid interferences
+       ($sed_unindent_prog): Initialize to empty, to avoid interference
        from the environment.
        * tests/self-check-me-in-env.test: Renamed to ...
        * tests/self-check-env-sanitize.test: ... this, and extended.
 
        yacc: update NEWS and docs about yacc-generated headers extensions
        * doc/automake.texi (Yacc and Lex): Document explicitly that
-       extensions of yacc-generated headers are modelled after the
+       extensions of yacc-generated headers are modeled after the
        extension of the corresponding sources.
        * NEWS: Update.
 
 2011-01-28   Stefano Lattarini  <stefano.lattarini@gmail.com>
 
-       yacc: extension of headers modelled after extension of sources
+       yacc: extension of headers modeled after extension of sources
        With this change, if '-d' is in *YFLAGS, a yacc input file named
        foo.y++ will cause a foo.h++ header to be generated, instead of a
        foo.h header.  Similarly for foo.ypp, foo.yxx and foo.yy.
        * lib/am/yacc.am (am__yacc_c2h): New internal variable.
        (?GENERIC?%EXT%%DERIVED-EXT%, ?!GENERIC?%OBJ%): Get the name of
        the header dynamically at make runtime, so that its extension is
-       modelled after the extension of the source.
+       modeled after the extension of the source.
        * automake.in (lang_yacc_target_hook): Adjust the calculation of
        `$header' accordingly.
        * tests/yacc-cxx.test: New test.
        * tests/txinfo4.test: Escape literal dots in grep regexps.  Add
        trailing `:' command.
        * tests/txinfo29.test: Likewise.  Relax grepping of generated
-       Makefile.in w.r.t. whitespaces.  Prefer `cat' over `echo' to
+       Makefile.in w.r.t. whitespace.  Prefer `cat' over `echo' to
        append to configure.in.
        * tests/txinfo3.test: Likewise.
        * tests/vtexi.test: Improve grepping of Makefile.in (sometimes
 
 2011-01-09  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
-       cosmetics: remove trailing whitespaces
-       * doc/automake.texi: Remove trailing whitespaces.
+       cosmetics: remove trailing whitespace
+       * doc/automake.texi: Remove trailing whitespace.
        * tests/cond13.test: Likewise.
        * tests/cond14.test: Likewise.
        * tests/fort4.test: Likewise.
        * tests/specflg3.test: Enable `errexit' shell flag, with related
        changes.  Avoid unportable use of `-e' option of fgrep.  Prefer
        trailing `:' over trailing `Exit 0'.  Remove extra empty lines,
-       and cosmetic changes to whitespaces.
+       and cosmetic changes to whitespace.
        * tests/obsolete.test: Enable `errexit' shell flag, with related
        changes.  Improve verbosity.  Other miscellaneous changes.
 
        Improve tests `help*.test' (also fixes maintcheck failures).
        * tests/help.test: To run automake, use `$AUTOMAKE' with all `-W'
        flags stripped away rather than hard-coded `automake-$APIVERSION',
-       to better honour user-overrides.  Similarly for aclocal.
+       to better honor user-overrides.  Similarly for aclocal.
        * tests/help2.test: Likewise.
        * tests/help3.test: Likewise.
        * tests/help4.test: Likewise.
        * NEWS: Update.
        Report by Bob Friesenhahn.
 
-       Posix 2008 requires make to set errexit.
+       POSIX 2008 requires make to set errexit.
        * lib/am/check.am: Update comment.
 
 2010-09-06  Stefano Lattarini  <stefano.lattarini@gmail.com>
        * tests/obsolete.test: Add a comment explaining why we need
        an indirection in adding $AUTOUPDATE to $required.
 
-       Normalize whitespaces in 'tests/Makefile.am'.
+       Normalize whitespace in 'tests/Makefile.am'.
        * tests/Makefile.am (TESTS): Use only spaces, not tabs, in the
        definition of this variable.
 
        * tests/parallel-tests10.test: Likewise.
        * tests/README (Section "Writing Test Cases" subsection "Do"):
        Adjusted the parts referring to tests checking `parallel-tests'
-       behaviour.  Some other minor related improvements.
+       behavior.  Some other minor related improvements.
        * tests/.gitignore (defs-p): Removed.
 
 2010-03-04  Stefano Lattarini  <stefano.lattarini@gmail.com>
index e35af62a9d45773b119bddc4ac54b2e0c9dbc983..20a9177944a4640f3ffbce6041b5b95c7d86773b 100644 (file)
@@ -1207,7 +1207,7 @@ Mon Aug  5 00:12:45 1996  Tom Tromey  <tromey@creche.cygnus.com>
        (handle_texinfo): Don't generate `.info-[0-9]' as a filename.
 
        * texinfos.am (.texi.info): Force .info file to be built in
-       srcdir.  From Franc,ois Pinard.
+       srcdir.  From François Pinard.
 
        From Jim Meyering:
        * m4/AM_PROG_CC_STDC.m4: (fp_PROG_CC_STDC): Include sys/stat.h in
@@ -2621,7 +2621,7 @@ Sun Dec 10 11:59:33 1995  Tom Tromey  <tromey@cambric.colorado.edu>
        * Makefile.am (cvs-dist): Don't release unless NEWS updated.
        Ensure 'checks' pass before release.
        (maintainer-check): Renamed.  Look in $(srcdir) for sources.  From
-       Franc,ois Pinard.
+       François Pinard.
        (cvs-dist): Depend on maintainer-check instead of explicitly
        running check.
 
index 0d00320d66c65fa8d784b271a6b402ee5f4041b1..f45875fbfbb3eb0f58040ec9d8c5e03a51b7aa6b 100644 (file)
--- a/old/TODO
+++ b/old/TODO
@@ -217,7 +217,7 @@ corresponding `.y' file.]
 Jim's idea: should look for @setfilename and warn if filenames too long
 * guess split size
 
-from joerg-martin schwarz:
+from Joerg-Martin Schwarz:
  -- If Makefile.am contains $(CC), $(COMPILE), $(YLWRAP), ....
     in an explicitly written rule,  you should emit the corresponding
     Makefile variables automatically.
@@ -254,7 +254,7 @@ djm wants ``LINKS'' variable; list of things to link together after
 install.  In BSD environment, use:
        LINKS = from1 to1 from2 to2 ...
 
-Need way to say there are no suffixes in a Makefile (Franc,ois'
+Need way to say there are no suffixes in a Makefile (François'
 "override" idea suffices here)
 
 Check to make sure various scripts are executable (IE when looking for
index 4772c0be2bae849fb5866ab2e1f5a4eeb45448ec..d9eb9f136439bef161e59cb751ef5e3a952e4846 100644 (file)
--- a/t/README
+++ b/t/README
@@ -97,7 +97,7 @@ Supported shells
 
   The test scripts are written with portability in mind, and should run
   with any decent POSIX shell.  However, it is worth nothing that older
-  versions of Zsh (pre-4.3) exhibited several bugs and incompatibilities
+  versions of Zsh (pre-4.3) exhibited several bugs and compatibility issues
   with our uses, and are thus not supported for running Automake's test
   scripts.
 
index 16f8dfef528bc2ef1b4ca43e988e498cfd727eb7..b7a91fa3c303bbf355a10475eebe7e10364388f6 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # Test for various older bugs related to quoting, escaping and
-# line breaking in the use of AC_OUTPUT.  Synthesised by a bunch
+# line breaking in the use of AC_OUTPUT.  Synthesized by a bunch
 # of older tests (referenced below).
 
 . test-init.sh
index 313c792586e5292182b1e79d212c4190676b9826..6d21aabd3ae73580d684ebea3cda839efb49d86b 100644 (file)
@@ -66,7 +66,7 @@ case " $* " in
   # configure tests.
   *' -OUT:'*) exit 0;;
   # This means that $* looks like a command-line for 'ar'.  We have to
-  # exit with failure here, to accommodate the two following ortoghonal
+  # exit with failure here, to accommodate the two following orthogonal
   # scenarios:
   #  1. when 'lib' is tested by configure, this will tell that it does
   #     not use the ar(1) interface, so that the 'ar-lib' script will
index ea538a82ed9b5ee416b2de420dc363500d940da3..fef9f83b371ff9cc44d34213f212d64ead3102a6 100644 (file)
@@ -16,8 +16,8 @@
 
 # Check that 'aclocal.m4' is not automatically distributed if not
 # required to build 'configure'.  This is *really* a corner-case
-# check, and the behaviour it checks is not documented either, so
-# if that behaviour is deliberately changed in the future, just
+# check, and the behavior it checks is not documented either, so
+# if that behavior is deliberately changed in the future, just
 # remove this test.
 # Related to automake bug#7819.
 
index 84d4675c5c0a75380fb8819879123a5cc0751d7e..fb24272287a32d4bb550793a4dabbf089736c879 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # Check that config.h.bot and config.h.top are automatically
-# distributed if the AC_CONFIG_HADERS macro is used and they
+# distributed if the AC_CONFIG_HEADERS macro is used and they
 # exist at automake runtime.
 # Related to automake bug#7819.
 
index d61fd6662209a5047e702761205ae90169a85faa..4c83ebe3f84d9e2ccbb6c38f30c1d81bafbd2d2c 100644 (file)
@@ -188,7 +188,7 @@ run_make ()
   am__make_redirect_stdall=no
   am__make_flags=
   am__make_rc_exp=0
-  # Follow-up code might want to analyse this, so mark is as
+  # Follow-up code might want to analyze this, so mark it as
   # publicly accessible (no double undesrscore).
   am_make_rc=0
   # Parse options for this function.
@@ -425,7 +425,7 @@ using_gmake ()
       fatal_ "invalid value for \$am__using_gmake: '$am__using_gmake'";;
   esac
 }
-am__using_gmake="" # Avoid interferences from the environment.
+am__using_gmake="" # Avoid interference from the environment.
 
 # make_can_chain_suffix_rules
 # ---------------------------
@@ -461,7 +461,7 @@ END
       *) fatal_ "make_can_chain_suffix_rules: internal error";;
   esac
 }
-am__can_chain_suffix_rules="" # Avoid interferences from the environment.
+am__can_chain_suffix_rules="" # Avoid interference from the environment.
 
 # useless_vpath_rebuild
 # ---------------------
index 43ed0c0f2da8c1fa1c8e821e0a6af53c34b932ae..da34f7083c9cb2921279b0876f80f705650d8f92 100644 (file)
@@ -14,7 +14,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-# Check dependency tracking in various flavours.
+# Check dependency tracking in various flavors.
 # Contains both libtool and non-libtool case.
 # Sourced by the various (autogenerated) 'depcomp*.tap' tests.
 # Examples of reported failures that motivated those test are
index 25b542defcd2410d6aee15d564a229819101ade8..50e116972cacfe832c7b9c548211e08f18a9ed9e 100644 (file)
@@ -148,7 +148,7 @@ result_ ()
   set -x # Restore shell xtraces.
 }
 
-#  Shorthands for common usages of 'result_'.
+#  Shorthand for common usages of 'result_'.
 ok_ () { result_ 'ok' ${1+"$@"}; }
 not_ok_ () { result_ 'not ok' ${1+"$@"}; }
 skip_ () { result_ 'ok' -D SKIP ${1+"$@"}; }
index 275cfb2dc6258bf30cd4ef2366ecefe6d37efbf0..61a88110e03692a861bdd02e54bb538b57a3f673 100644 (file)
@@ -222,7 +222,7 @@ esac
 # for this whole subsecond-mtime problem. With this set to "sleep 1",
 # there were still random parallelization failures; setting
 # am_cv_sleep_fractional_seconds=false as above was still needed.
-# 
+#
 sleep="sleep $MTIME_RESOLUTION"
 
 # An old timestamp that can be given to a file, in "touch -t" format.
index 7378bc78917b8d118581804736edad1b65f1ec82..c616bf11623f64cabb5e3a1fd2cdf58732ea6194 100644 (file)
@@ -35,7 +35,7 @@ if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
   NULLCMD=:
   setopt NO_GLOB_SUBST
   # If Zsh is not started directly in POSIX-compatibility mode, it has some
-  # incompatibilities in the handling of $0 that conflict with our usage;
+  # incompatibility in the handling of $0 that conflict with our usage;
   # i.e., $0 inside a file sourced with the '.' builtin is temporarily set
   # to the name of the sourced file.  Work around that.
   # Note that a bug in some versions of Zsh prevents us from resetting $0
@@ -95,7 +95,7 @@ _am_exit ()
   # Extra escaping to ensure we do not call our 'exit' alias.
   (\exit $1); \exit $1
 }
-# Avoid interferences from the environment
+# Avoid interference from the environment
 am__test_skipped=no
 # This alias must actually be placed before any use if 'exit' -- even
 # just inside a function definition.  Weird, but real.
@@ -249,7 +249,7 @@ unindent ()
   fi
   sed "$sed_unindent_prog" ${1+"$@"}
 }
-sed_unindent_prog="" # Avoid interferences from the environment.
+sed_unindent_prog="" # Avoid interference from the environment.
 
 ## ---------------------------------------------------------------- ##
 ##  Create and set up of the temporary directory used by the test.  ##
@@ -271,7 +271,7 @@ am_exit_trap ()
   else
     # This is to ensure that a test script does give a SKIP outcome just
     # because a command in it happens to exit with status 77.  This
-    # behaviour, while from time to time useful to developers, is not
+    # behavior, while from time to time useful to developers, is not
     # meant to be enabled by default, as it could cause spurious failures
     # in the wild.  Thus it will be enabled only when the variable
     # 'am_explicit_skips' is set to a "true" value.
@@ -305,7 +305,7 @@ am_set_exit_traps ()
   #  - /bin/ksh and /usr/xpg4/bin/sh on Solaris 10
   #  - Bash 3.2.51 on Solaris 10 and bash 4.1.5 on Debian GNU/Linux
   #  - AT&T ksh on Debian Gnu/Linux (deb package ksh, version 93u-1)
-  # OTOH, at least these shells that do *not* exhibit that behaviour:
+  # OTOH, at least these shells that do *not* exhibit that behavior:
   #  - modern version of the Almquist Shell (at least 0.5.5.1), on
   #    both Solaris and GNU/Linux
   #  - public domain Korn Shell, version 5.2.14, on Debian GNU/Linux
index 41df96e74f77cd221ca4bd72412f11265d3fb15e..9c88707766494c6feeeecb9f4549c48d61bdbae2 100644 (file)
@@ -62,7 +62,7 @@ case "$1" in
 esac
 END
 
-# Quite complexish, but allow the tests in client scripts to be written
+# Quite complex, but allow the tests in client scripts to be written
 # in a "data-driven fashion".
 do_check ()
 {
index 1fbeb859acaa0be4e7cb56f2200f889e4adbff77..6535b7ecde193a0f72bf7df19ff6257a79682283 100644 (file)
@@ -16,7 +16,7 @@
 
 # Backward-compatibility test: try to build and distribute a package
 # using obsoleted forms of AC_INIT, AM_INIT_AUTOMAKE and AC_OUTPUT,
-# and 'configure.in' as autconf input file.
+# and 'configure.in' as autoconf input file.
 # This script can also serve as mild stress-testing for Automake.
 # See also the similar test 'backcompat5.test'.
 
index 49f919af23cbe6dd5465327b3cd5adf4dd6febe0..85fc4732eaf64f6a78e9cd28cc0ae902a4137f69 100644 (file)
@@ -39,7 +39,7 @@ END
 $AUTOMAKE
 
 # Make sure we diagnose trailing backslash at the end of a file.
-# Report from Akim Demaile <akim@epita.fr>.
+# Report from Akim Demaille <akim@epita.fr>.
 echo 'foo = \' > Makefile.am
 AUTOMAKE_fails
 grep 'trailing backslash' stderr
index 5dced579d4989f06b25cd6349898c081705ea42f..87a9e2d36ef242015116a567213ed50aef15908a 100644 (file)
@@ -14,7 +14,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-# Check that canonicalization does not transliterate the '@' charactrer.
+# Check that canonicalization does not transliterate the '@' character.
 
 . test-init.sh
 
index c51311912d0fdbdfd46d53a79f8cf553df7c0599..9b45076698ff378efba4ccbde2a449ef7e0cc898 100644 (file)
@@ -39,7 +39,7 @@ else
 bin_PROGRAMS            =       tb
 tb_SOURCES              =       tb.c tparse.h tscan.l tparse.y
 tb_LDADD                =       $(LEXLIB)
-tparse.h: tparce.c
+tparse.h: tparse.c
        echo whatever
 endif
 EOF
index 22ac5e0e04ae0213f5ddefcc446897acb7d0b08c..a3bbc4863d06f8cb67fd0d4632d7be304725087a 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # Test to make sure several config headers are allowed.
-# See also sister "minimalistic" test 'confh7.sh'.
+# See also sister "minimalist" test 'confh7.sh'.
 
 . test-init.sh
 
index e74c99568b12fcfe56c8cbee44ac9e4f34df2cb8..d891f3a130416b85c5b6860962591842ffabde7c 100644 (file)
@@ -70,7 +70,7 @@ EOF
     # built-sources build should have it
     test -e x.c
   fi
-  
+
   # If the test runs fast enough, the make dist second time through
   # won't do anything since the tarball will be considered up to date.
   rm -f "${pkg_ver}".tar.gz "${pkg_ver}".tar
index 7ad30c55c35e03557a3bbb3a5870ed1fa43b1ac5..38968c14eec15f55c9146ffe22bb9ecffd4ce91e 100644 (file)
@@ -45,7 +45,7 @@ grep 'DISTCHECK_CONFIGURE_FLAGS.*AM_DISTCHECK_CONFIGURE_FLAGS' Makefile.in \
 $AUTOCONF
 ./configure --enable-success sentence='it works :-)'
 
-# The configure call in "make distcheck" should honour
+# The configure call in "make distcheck" should honor
 # $(AM_DISTCHECK_CONFIGURE_FLAGS).
 
 $MAKE distcheck
index b2c12d17c1962bec2f356c1a3412d1a0e670841a..45c342a2e5c99425ed85a6a76c134efc1075672f 100644 (file)
@@ -75,7 +75,7 @@ test "$(cat write)" = "all is ok"
 test ! -e removed
 test -f doc/README
 test -f doc/RELEASE-DATE
-test ! -e doc/HACING
+test ! -e doc/HACKING
 ./execute
 ./execute | grep 'I run successfully'
 cd ..
index e2ea5de785a0aeb2bd20fe9a75d1454dc96620a1..cab7a2258b9afc03ed36c928669abffcd40c6a4e 100644 (file)
@@ -14,7 +14,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-# Check that wildcards in elements of EXTRA_DIST are honoured when
+# Check that wildcards in elements of EXTRA_DIST are honored when
 # $srcdir != $builddir, if properly declared.
 # Suggested by observations from Braden McDaniel.
 
index 5ff290205e8e7a1b3af020978b720895da6b8e0f..412ca7cd4909a2d9fe30225f5285b15089ec9bf7 100644 (file)
@@ -14,7 +14,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-# Check that wildcards in EXTRA_DIST are honoured.
+# Check that wildcards in EXTRA_DIST are honored.
 # Suggested by observations from Braden McDaniel.
 # See also sister test 'extra-dist-wildcards-gnu.sh', that checks a
 # similar usage with the involvement of the $(wildcard) GNU make builtin.
index faa033727ab8c89b533283e58d4d5af8a912bf9e..93f6ad98394344bef3cb3814b6cb878ab7011aa1 100644 (file)
--- a/t/help.sh
+++ b/t/help.sh
@@ -23,7 +23,7 @@
 mkdir emptydir
 cd emptydir
 
-# Honour user overrides for $ACLOCAL and $AUTOMAKE, but without
+# Honor user overrides for $ACLOCAL and $AUTOMAKE, but without
 # adding extra options.
 ACLOCAL=$am_original_ACLOCAL
 AUTOMAKE=$am_original_AUTOMAKE
index cf6ad9c6befcc22e697b28d747f401b0f0fd57c1..b269055860311425805e4b3f8ca377e37b069cea 100644 (file)
@@ -22,7 +22,7 @@
 mkdir cleandir
 cd cleandir
 
-# Honour user overrides for $ACLOCAL and $AUTOMAKE, but without
+# Honor user overrides for $ACLOCAL and $AUTOMAKE, but without
 # adding extra options.
 ACLOCAL=$am_original_ACLOCAL
 AUTOMAKE=$am_original_AUTOMAKE
index 4ca44276e71b144452dd6fda60ac67339ee05f7d..03357449620e2092ee7f1dc91c71aebd9a802c6a 100644 (file)
@@ -22,7 +22,7 @@
 mkdir cleandir
 cd cleandir
 
-# Honour user overrides for $ACLOCAL and $AUTOMAKE, but without
+# Honor user overrides for $ACLOCAL and $AUTOMAKE, but without
 # adding extra options.
 ACLOCAL=$am_original_ACLOCAL
 AUTOMAKE=$am_original_AUTOMAKE
@@ -51,7 +51,7 @@ mv -f foo.m4 aclocal.m4 # autoconf will need aclocal.m4
 
 $AUTOMAKE --add-missing --help --copy
 test ! -e install-sh
-$AUTOMAKE --copy --version --add-mising
+$AUTOMAKE --copy --version --add-missing
 test ! -e install-sh
 # Sanity check.
 $AUTOMAKE --add-missing --copy
index 74c1d9e1f3e5edd55c1a8ba4a059436893a3e6bf..1fd5c715e968b28df37257caa763e23a47ff5738 100644 (file)
@@ -23,7 +23,7 @@
 mkdir emptydir
 cd emptydir
 
-# Honour user overrides for $ACLOCAL and $AUTOMAKE, but without
+# Honor user overrides for $ACLOCAL and $AUTOMAKE, but without
 # adding extra options.
 ACLOCAL=$am_original_ACLOCAL
 AUTOMAKE=$am_original_AUTOMAKE
index b56dfd6e05558bde387689c4db391ef457587ce6..7744fd6e6f421cd357d01323656e2d54398d4533 100644 (file)
@@ -35,9 +35,9 @@ cat >Makefile.am <<'END'
 AUTOMAKE_OPTIONS = subdir-objects
 bin_PROGRAMS = p
 nobase_bin_PROGRAMS = np sub/np
-lib_LTIBRARIES = libfoo.la
+lib_LTLIBRARIES = libfoo.la
 nobase_lib_LTLIBRARIES = libnfoo.la sub/libnfoo.la
-pyexec_LTIBRARIES = libpy.la
+pyexec_LTLIBRARIES = libpy.la
 nobase_pyexec_LTLIBRARIES = libnpy.la sub/libnpy.la
 END
 
index ed2f4c71af22be236f644028f1dea590e84b793c..97f7b18564575e324a4922674874679072bc3118 100644 (file)
@@ -52,7 +52,7 @@ define_problematic_string ()
   fi
 }
 
-# Be sure to avoid interferences from the environment.
+# Be sure to avoid interference from the environment.
 all_test_names_list=''
 builddir_xfails=''
 destdir_xfails=''
@@ -286,7 +286,7 @@ for test_name in $test_names_list; do
       dest)
         build=build-$test_name
         # Also use $test_name in the definition of $dest, to avoid
-        # interferences among different tests in case $test_string
+        # interference among different tests in case $test_string
         # is strangely munged (which is not unexpected, considering
         # how tricky its characters are).  With some shells, this
         # has already happened (at least on OpenIndiana 11 and on
index bac7678bf01e359f755267e28e0b383795ce6f03..ead75980a88fec6d6ef83031cf72e642da0baf20 100644 (file)
@@ -150,7 +150,7 @@ END
 
 cat >> Makefile.am <<'END'
 ## We must use 'TESTS_ENVIRONMENT', not 'AM_TESTS_ENVIRONMENT',
-## because the latter is not hnoured by the old serial test
+## because the latter is not honored by the old serial test
 ## harness.
 TESTS_ENVIRONMENT = \
     if test x"$$jprog_doing_installcheck" != x"yes"; then \
index 4958d279da9baa14bcb86969988ded4c630d07f3..7a58d060ac31177f44c030137810120e8944afca 100644 (file)
@@ -20,7 +20,7 @@
 # 'make' and 'make distdir' and check whether the version of 'lexer.c'
 # to be distributed is up to date.
 
-# Please keep this in sync with sister test 'yaccvapth.sh'.
+# Please keep this in sync with sister test 'yaccvpath.sh'.
 
 required='cc lex'
 . test-init.sh
index cf188254cb4d6ebacafd5a4322de7f539af77a8c..e84399d755d8c470d236b8577f55d101518ae16f 100644 (file)
@@ -14,7 +14,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-# Elisp byte-compilation honours AM_ELCFLAFS and ELCFLAGS.
+# Elisp byte-compilation honors AM_ELCFLAFS and ELCFLAGS.
 
 . test-init.sh
 
index bce6f1851af9194394ee43ccd650dedaeee1bf76..b1a8eb7eab80f466d755d3014f740a64f3403f7a 100644 (file)
@@ -171,7 +171,7 @@ nodist_noinst_SCRIPTS += runtest
 
 # If two test scripts have the same basename, they will end up sharing
 # the same log file, leading to all sort of undefined and undesired
-# behaviours.
+# behaviors.
 check-no-repeated-test-name:
        @LC_ALL=C; export LC_ALL; \
         lst='$(TEST_LOGS)'; for log in $$lst; do echo $$log; done \
index d7d77e77c226aa88fea13c290aaf88a8a80dfe68..60c63a98e6004c673d2c6c2de7fc219b9dd2f605 100644 (file)
@@ -34,7 +34,7 @@ FOO = $files $files2 \
 EOF
 
 # The 'FOO = ...' line is 2293-byte long.  More than what a POSIX
-# conformant system is expected to support.  So do not use grep
+# conforming system is expected to support.  So do not use grep
 # on the non-text file.
 
 # grep $match Makefile.am
index 0b1107a4d2ec00d06b80dd33c3e5647f1aadcdea..29d7c1034c5192a2e97d6d687e3b6d808424d69d 100644 (file)
@@ -39,7 +39,7 @@ if IS_GNU_MAKE
 
  is_too_deep := $(shell test $(MAKELEVEL) -lt 10 && echo no)
 
-## Indenteation here required to avoid confusing Automake.
+## Indentation here required to avoid confusing Automake.
  ifeq ($(is_too_deep),no)
  else
  $(error $(errmsg), $(MAKELEVEL) levels)
index a67040cebd026745a70b4ac176febd21400695e0..302fe9dee24446f35137a9f02824f066409f4e7b 100644 (file)
@@ -49,7 +49,7 @@ cat > foo.test << 'END'
 # We expect the test driver to be terminated by a signal, and so
 # to exit with non-zero status, thus causing "make check" to fail.
 # Exiting with status 0 from this test script is thus a good way to
-# make unexpected behaviours more evident, since this will likely
+# make unexpected behaviors more evident, since this will likely
 # cause and unexpected success in "make check".
 trap 'exit 0' 0;
 stop_test () { exit 0; }
index 7f7bc71a1aa8d58fb4ef6c3dec46c923e787784e..cb59c8c10df1c664f65a62fc20e002b2a8cfbe24 100644 (file)
@@ -14,7 +14,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-# Check performanceof recipe generating test-suite.log file and testsuite
+# Check performance of recipe generating test-suite.log file and testsuite
 # summary.  That has suffered of huge inefficiencies in the past.
 # FIXME: this test is not currently able to detect whether the measured
 # FIXME: performance is too low, and FAIL accordingly; it just offers
index 393d17c55959c5ad665075f48715a82ef9c09347..b10fe2b6eeac7a236fab30a14844b96d523cf72b 100644 (file)
@@ -105,7 +105,7 @@ for primary in $primaries; do
       # primary to be coupled to any prefix.
       # See also Automake bug#7656.
       # We should dig out how automake had come to behave this way, and
-      # if such a behaviour can be safely changed.
+      # if such a behavior can be safely changed.
       prefixes_ok=$prefixes
       ;;
     TEXINFOS)
index b9bbb3913d28a376aea1f1eac38dcb8dfc6d2da7..0bdfd91acdcdf174632357bd12afdcc55b286101 100644 (file)
@@ -44,7 +44,7 @@ for d in foo foo/bar "$(pwd)/foo" . .. ../foo ''; do
   files=$(find "$d2" | grep '\.py[co]$')
   #
   # 1) With new-enough Python3, there are six files.
-  # 
+  #
   # 2) We have to elide the leading spaces from the wc output
   #    for the sake of the macOS shell.
   #    https://debbugs.gnu.org/cgi/bugreport.cgi?bug=68119#4
index 8d563ba4c1765ed3f480a59c76c9595e2d8d6837..b4ba6dcbe6fecb033bd271a72da68a548ff3e2f8 100644 (file)
@@ -14,7 +14,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-# Make sure 'py-compile' honours the PYTHON environment variable.
+# Make sure 'py-compile' honors the PYTHON environment variable.
 
 . test-init.sh
 
index 16492de148b18d0e948fc481d623ddb9eed2ef5f..199dd4def0edaf8a92e1d37ab4432faca7644c68 100644 (file)
@@ -35,7 +35,7 @@ AC_OUTPUT
 END
 
 cat > Makefile.am << 'END'
-# The 'am__relitivize' definition is only brought in when
+# The 'am__relativize' definition is only brought in when
 # SUBDIRS are defined.
 SUBDIRS = .
 
index f31028d52ab00588d33d135d5b567abb345488f8..c74334693d4f97554681e24bfc17e8f03da5f980 100644 (file)
@@ -30,7 +30,7 @@ echo "AC_SUBST([FOO], [$magic1])" >> configure.ac
 
 echo "@FOO@" > bar.in
 echo "AC_CONFIG_FILES([bar])" >> configure.ac
-unset d # Avoid unduly interferences from the environment.
+unset d # Avoid undue interference from the environment.
 for i in 0 1 2 3 4 5 6 7 8 9; do
   d=${d+"$d/"}sub$i
   echo "SUBDIRS = sub$i" > Makefile.am
index 20aeb8997c87a85f40d5196aa4da4b1bcbdac0c6..aa843514118c737ce4412c21739138cd04dd35c4 100644 (file)
@@ -14,7 +14,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-# Check that the aclocal honouring of AC_CONFIG_MACRO_DIR interacts
+# Check that the aclocal honoring of AC_CONFIG_MACRO_DIR interacts
 # nicely with automatic rebuild rules.
 
 . test-init.sh
index 2e33d277b3c24c5112842748bb1caedf34497387..4c992d82ecd0ae0718c00d8c61fc6317a1a0e149 100644 (file)
@@ -16,7 +16,7 @@
 
 # Test for automake bug#8365, related to Makefile remake rules.
 # The bug is due to subtle timestamp issues and limitations in
-# make's behaviour, and is very unlikely to be triggered (we have
+# make's behavior, and is very unlikely to be triggered (we have
 # to resort to timestamp edit hacks to consistently expose it); in
 # any account, it is nigh to impossible to trigger it by running
 # make by hand.  Thus, fixing it would not be worth the hassle, but
index 4d69f9971939bb78586f89dafa67711da423af9e..7375963dff7d72b9db1bf95e4841ad1e46a134c8 100644 (file)
@@ -75,7 +75,7 @@ command_ok_ "command not found" -- test $? -gt 0
 
 : Non-executable command.
 test -f Makefile && test ! -x Makefile || \
-  framowork_failure_ "no proper Makefile in the current directory"
+  framework_failure_ "no proper Makefile in the current directory"
 $AM_TEST_RUNNER_SHELL -c "$init ./Makefile; :" "$dummy_test_script"
 command_ok_ "permission denied" test $? -gt 0
 
index b5b9e4c3a01372be1751b3334079873c33032ce8..8ad2a5ae12e9b5b95a3ed54aa712e39d021c663e 100644 (file)
@@ -19,7 +19,7 @@
 am_create_testdir=empty
 . test-init.sh
 
-hasnt_parallel_tests ()
+lacks_parallel_tests ()
 {
   $EGREP 'TEST_SUITE_LOG|TEST_LOGS|\.log.*:' $1 && exit 1
   grep 'recheck.*:' $1 && exit 1
@@ -61,7 +61,7 @@ touch missing install-sh
 $ACLOCAL
 $AUTOMAKE
 grep TEST Makefile.in # For debugging.
-hasnt_parallel_tests Makefile.in
+lacks_parallel_tests Makefile.in
 test ! -e test-driver
 cd ..
 
@@ -71,7 +71,7 @@ $ACLOCAL
 $AUTOMAKE --add-missing
 grep TEST [ab]Makefile.in # For debugging.
 has_parallel_tests aMakefile.in
-hasnt_parallel_tests bMakefile.in
+lacks_parallel_tests bMakefile.in
 mv aMakefile.in aMakefile.sav
 mv bMakefile.in bMakefile.sav
 test ! -e test-driver
index f120a5fdd903bf3a94c4b738dde405eecae185be..2cf5d9551ec316c51176b0411c9e9145a098f14b 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # Check whether "rm -f" do not complain if called without file
-# operands.  We'd like to depend on this behaviour (which seems
+# operands.  We'd like to depend on this behavior (which seems
 # to hold on all non-museum systems, and will soon be mandated
 # by POSIX as well) in future version of automake, to simplify
 # automake-provided cleanup rules.
index dc449017099c5a6eafdf6ef11e05642bc82c3aaf..476a03ab1748cc30b471098f553305a4a8aa26b5 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # Make sure we reuse variables whenever possible, to limit
-# combinational explosion.  (This test is named after the &subobjname
+# combinatorial explosion.  (This test is named after the &subobjname
 # sub in Automake).
 
 . test-init.sh
index eb41df053411c3b0dc7465cc1f93d12ae2be72c0..3c010ee2be50dbadba613ce489f8dc84d675dd73 100644 (file)
@@ -33,7 +33,7 @@ SUFFIXES = .zoo
 bin_PROGRAMS = foo
 foo_SOURCES = foo.zoo
 # This is required by "make distcheck".  The useless indirection is
-# reequired to avoid false positives by the grepping checks below.
+# required to avoid false positives by the grepping checks below.
 FOO = foo
 CLEANFILES = $(FOO).cc
 END
index 605a2bd030f480e599e8a70619f88381a4251546..b7a6706b04104a8edf6de42d2e0310c49f7e2f7f 100644 (file)
@@ -20,7 +20,7 @@
 . test-init.sh
 
 cat > Makefile.am << 'END'
-# The tests are *deliberately* listed in inversed order here.
+# The tests are *deliberately* listed in inverse order here.
 TESTS = c.test b.test a.test
 b.log: a.log
 c.log: b.log
index 81907dffc01d0d4641a00e9b51589d90e80dc5b1..3d56e23e525633cc2d66e02f54101ce003beac00 100644 (file)
@@ -54,7 +54,7 @@ for string in \
 '## A string with more whitespace' \
     "  ${tab}a b${tab} c" \
 '## Note the we do not have the empty string here.  We prefer to' \
-'## leave its behaviour in this context undefined for the moment.'
+'## leave its behavior in this context undefined for the moment.'
 do
   case $string in '##'*) continue;; esac
   i=$(($i + 1))
index b59e2a99807bfe0ce1042c989b2ee0743ebc8324..6c39a009070b33b7d4d97dc5689edfe53f347b34 100644 (file)
@@ -108,7 +108,7 @@ test $($FGREP -c "$cmarker" my.log) -eq 5
 
 # Passed test scripts shouldn't be mentioned in the global log.
 $EGREP '(^pass|[^x]pass)\.test' my.log && exit 1
-# But failing (expectedly or not) and skipped ones should.
+# But failing (unexpectedly or not) and skipped ones should.
 $FGREP 'xfail.test' my.log
 $FGREP 'skip.test' my.log
 $FGREP 'fail.test' my.log
index 2fd317c555b09e673fd539bd199e75cfe9d122fe..46847a7c65fa304c1bad0c0acae1d3fb72c58d63 100644 (file)
@@ -74,7 +74,7 @@ highno=1000
 
 for result in 'ok' 'not ok'; do
   for spacing in "" " " "$tab"; do
-    subst="$result &$spacing$higno"
+    subst="$result &$spacing$highno"
     sed -e "s|.*|$subst|" prefixes
     for directive in TODO SKIP; do
       test "$result $directive" != "not ok SKIP" || continue
index c3f30eb7274207a0fdd7c8ea2b4fe4d9529ec3c6..bde2fc7cd08ac9896a88e855684c3b7a2f7d6343 100644 (file)
@@ -17,7 +17,7 @@
 # TAP support:
 #  - TAP plans with numbers having leading zeroes, as in "1..01"
 #  - TAP "SKIP" plans with multiple zeroes, as in "1..00 # SKIP"
-# This is consistent with the behaviour of the 'prove' utility.
+# This is consistent with the behavior of the 'prove' utility.
 
 . test-init.sh
 
index 0d7eed674c7251fc40e4385134f55e928405ebfa..7b2b47c5a275648a8d1109c594597e64e62153ae 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # TAP support: a malformed TAP plan is not recognized.  The checks in
-# here should be consistent with the behaviour of the 'prove' utility.
+# here should be consistent with the behavior of the 'prove' utility.
 
 . test-init.sh
 
index 7bed7e21f3253637168b0b007ecdc5b0991d55bb..afa9f7211778ccffeb4dd80509e0798248db9b33 100644 (file)
@@ -16,7 +16,7 @@
 
 # TAP support:
 #  - a test result numbered as 0 is to be considered out-of-order
-# This is consistent with the behaviour of the 'prove' utility.
+# This is consistent with the behavior of the 'prove' utility.
 
 . test-init.sh
 . tap-setup.sh
index db813e7b6982616096f56a02e13700005c139897..05005f0664881045e986437633d4513022b81fca 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # Check that UID or GID too high for the ustar format are correctly
-# rwcognized and diagnosed by configure.  See bug#8343 and bug#13588.
+# recognized and diagnosed by configure.  See bug#8343 and bug#13588.
 
 . test-init.sh
 
index 09fdae72c294216f1921adb8423a1a59d4ca2931..81ac9cde2fc51f632b86886cda4a523d21418ddf 100644 (file)
@@ -148,7 +148,7 @@ for vpath in : false; do
   # Check that the content of, and only of, the test logs with at least
   # one failing test case has been copied into 'test-suite.log'.  Note
   # that test logs containing skipped or xfailed test cases are *not*
-  # copied into 'test-suite.log' -- a behaviour that deliberately differs
+  # copied into 'test-suite.log' -- a behavior that deliberately differs
   # from the one of the built-in Automake test drivers.
   grep '%%' test-suite.log # For debugging.
   grep '%% fail %%' test-suite.log
index 70c3c6c99986e129aa703f20bacdb1f5413bf0a8..3b498cd479e3b4b419b833032d5d80142509d8e9 100644 (file)
@@ -40,7 +40,7 @@ empty =
 TEST_LOG_DRIVER = \$(top_srcdir)/td
 
 # XFAIL_TESTS should gracefully handle TAB characters, and multiple
-# whitespaces.
+# whitespace characters.
 XFAIL_TESTS =\$(empty)${tab}x1.test x2.test${tab}x3.test${tab}\
 x4.test ${tab} x5.test              x6.test${tab}\$(empty)
 
index 4bad6f2060bc7d889d15de6305f1194a0e6dd322..b814358778780500921d63dd73cdc0c805ff5e51 100644 (file)
@@ -122,7 +122,7 @@ have_rst_section ()
 
 # Passed test scripts shouldn't be mentioned in the global log.
 $EGREP ':.*[^x]pass' my.log && exit 1
-# But failing (expectedly or not) and skipped ones should.
+# But failing (unexpectedly or not) and skipped ones should.
 have_rst_section 'SKIP: skip'   my.log
 have_rst_section 'FAIL: fail'   my.log
 have_rst_section 'XFAIL: xfail' my.log
index a57f3933727b5f25280770c3fc753f7981924dfa..1f244b34868bf29f6936773421cb83b96d630602 100644 (file)
@@ -16,7 +16,7 @@
 
 # Check parallel-tests features:
 #  - $(TESTS_LOGS) can end up holding duplicated entries
-# Such behaviour can be useful for projects that want to verify that
+# Such behavior can be useful for projects that want to verify that
 # different test scripts don't end up sharing the same log file.
 # (Automake itself is such a project, BTW ;-)
 
index de2e7cb18f4f536584741c17feff74c0b3622bbb..a780413a4adf71c7cdf075cd2b3fda9542b81a1a 100644 (file)
@@ -174,7 +174,7 @@ XFAIL: zar-doz
 ==============
 END
 
-# Whitespaces before and after ':global-test-result:' are handled OK.
+# Whitespace characters before and after ':global-test-result:' are handled OK.
 
 echo "   $tab:global-test-result:PASS" > foo.test
 echo "${tab}${tab}:global-test-result:${tab}   ${tab}SKIP" > zar-doz.x
index db43309eee59dfc060e30d1b823158840194d637..f134cd63e5a2c4f81b67b732e11ff26190fe915f 100644 (file)
@@ -17,7 +17,7 @@
 # With old serial testsuite driver, TESTS_ENVIRONMENT can be used to
 # define the "test runner", i.e. the program that the test scripts must
 # be run by (with the parallel test harness one should use LOG_COMPILER
-# for this).  The behaviour tested here is also documented in the manual.
+# for this).  The behavior tested here is also documented in the manual.
 
 am_serial_tests=yes
 . test-init.sh
index 6937dfd07bd1f2fdab32e75ff059761a65c060c3..0c1178a2bd8c6709e6b27236874abf598b8f29a0 100644 (file)
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-# Test for a behaviour of 'TESTS_ENVIRONMENT' and 'AM_TESTS_ENVIRONMENT'
+# Test for a behavior of 'TESTS_ENVIRONMENT' and 'AM_TESTS_ENVIRONMENT'
 # w.r.t. file descriptor redirections which, although undocumented,
 # is nonetheless required by Gnulib's 'tests/init.sh' and by coreutils'
 # testsuite.
-# The checked behaviour is that we can portably do file descriptor
+# The checked behavior is that we can portably do file descriptor
 # redirections by placing them at the end of a {AM_,}TESTS_ENVIRONMENT
 # definition without a following semicolon.  The need to support this
-# is detailedly motivated by coreutils bug#8846:
+# is motivated in detail by coreutils bug#8846:
 #   <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=8846>
 # and the following CC:ed thread on bug-autoconf list:
 #   <https://lists.gnu.org/archive/html/bug-autoconf/2011-06/msg00002.html>
index c3db16d1e2a1fdfd4f8c9da019f00178b8223eb3..694ffb9cf67c67a30c0fec3d62ea36b133b0df86 100644 (file)
@@ -16,9 +16,9 @@
 
 # Check if Automake doesn't exit with an error for Texinfo output files
 # without a direct input file, but with a matching input file processed
-# by 'configure' (file.texi.in). 
+# by 'configure' (file.texi.in).
 # https://debbugs.gnu.org/cgi/bugreport.cgi?bug=54063#41
-# 
+#
 # This also tests an @setfilename that is different from the file name,
 # and the lack of any @setfilename, in the case of using .texi.in.
 # (See scan_texinfo_file in automake.)
index 3209af5be49f0c74f5ff7114f723238ae1ea1357..8cabc648d53d07573b032d619a24ecab10bff3e4 100644 (file)
@@ -33,7 +33,7 @@ chmod a-w d || skip_ "cannot make directories unwritable"
 # "eat" the error message from 'rm' in some situation, although the 'rm'
 # utility itself correctly prints it when invoked from (say) 'env' or
 # 'bash'.  Yikes.
-# We'll cater to these incompatibilities by relaxing a test below if
+# We'll cater to this incompatibility by relaxing a test below if
 # a faulty shell or 'rm' program is detected.
 st=0; $SHELL -c 'rm -f d/f' 2>stderr || st=$?
 cat stderr >&2
index 61f26a933f659d8b7c98b33354ce75634d4ab6bc..82509889011eca9aee4255fe8318732bbda6b3e5 100644 (file)
@@ -58,7 +58,7 @@ chmod +x bin/valac.old
 
 PATH=$(pwd)/bin$PATH_SEPARATOR$PATH; export PATH
 
-# Avoid interferences from the environment.
+# Avoid interference from the environment.
 unset VALAC vala_version
 
 $ACLOCAL
index a57101dc25984ecb117fc8fd1ff14a3a4407fd34..f3c34f96babc47165775838e2dac20a1f5200b27 100644 (file)
@@ -117,7 +117,7 @@ $MAKE clean
 have_generated_files
 
 # But stamp files should be removed by "maintainer-clean" (the
-# behaviour w.r.t. intermediate C files is still unclear, and
+# behavior w.r.t. intermediate C files is still unclear, and
 # better left undefined for the moment).
 $MAKE maintainer-clean
 ls *vala*.stamp | grep . && exit 1
index 957007621a6a7cd3088f4c8e2746c9a3498ee888..725c4f195da2d0b2109f5f9f9b70b2a1887749af 100644 (file)
@@ -114,7 +114,7 @@ ls -l # For debugging.
 have_generated_files
 
 # But stamp files should be removed by "maintainer-clean" (the
-# behaviour w.r.t. intermediate C files is still unclear, and
+# behavior w.r.t. intermediate C files is still unclear, and
 # better left undefined for the moment).
 $MAKE maintainer-clean
 ls *vala*.stamp | grep . && exit 1
index 899d8fcb4da81a00a54cdd7718728d53c71a85b8..cb5a226ddfee73b458b675299f1b12e84c8c2f79 100644 (file)
@@ -63,7 +63,7 @@ grep '^sub/maude\.c:.*maude\.y' Makefile.in && exit 1
 cat > Makefile.am << 'END'
 bin_PROGRAMS = maude
 maude_SOURCES = sub/maude.y
-## A particularly trickey case.
+## A particularly tricky case.
 maude_YFLAGS = -d
 END