]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Fix typos.
authorStepan Kasal <skasal@redhat.com>
Tue, 13 May 2008 12:46:39 +0000 (14:46 +0200)
committerEric Blake <ebb9@byu.net>
Tue, 13 May 2008 14:47:58 +0000 (08:47 -0600)
* doc/automake.texi (Timeline): Reported by Reuben Thomas.
* lib/am/remake-hdr.am: A few typos in comments.

Signed-off-by: Stepan Kasal <skasal@redhat.com>
ChangeLog
doc/automake.texi
lib/am/remake-hdr.am

index e134e4a7f9e25519ef4dd43d3379461771423595..9eea7e5d62b82bb93d91a277ccaca2be8bc12889 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-05-13  Stepan Kasal  <skasal@redhat.com>
+
+       Fix typos.
+       * doc/automake.texi (Timeline): Reported by Reuben Thomas.
+       * lib/am/remake-hdr.am: A few typos in comments.
+
 2008-04-10  Eric Blake  <ebb9@byu.net>
 
        Prefer a released version of autoconf.
index baf5c77025956bb7a80ed8231b8b8e941fd55d61..a8f3403c7deefc0eaccd440335e43acf6a02a13e 100644 (file)
@@ -11280,7 +11280,7 @@ lasts.
 
 @item 1996-11-26 David J.@tie{}MacKenzie releases Autoconf 2.12.
 
-Between June and October, the Autoconf development is almost staled.
+Between June and October, the Autoconf development is almost stalled.
 Roland McGrath has been working at the beginning of the year.  David
 comes back in November to release 2.12, but he won't touch Autoconf
 anymore after this year, and Autoconf then really stagnates.  The
index 2d6eaebea50a0a2309580094b4c89f3b20875aee..6e3ebcdaf26762e60820a29f18a3ee1103f80084 100644 (file)
@@ -39,21 +39,21 @@ if %?FIRST%
 ## Whenever $(AUTOHEADER) has run, we must make sure that
 ## ./config.status will rebuild config.h.  The dependency from %STAMP%
 ## on %CONFIG_H_DEPS% (which contains config.hin) is not enough to
-## express his.
+## express this.
 ##
 ## There are some tricky cases where this rule will build a
 ## config.hin which has the same timestamp as %STAMP%, in which case
-## ./config.status will not be rerun (meaning that users will use in
+## ./config.status will not be rerun (meaning that users will use an
 ## out-of-date config.h without knowing it).  One situation where this
-## can occurs is the following:
+## can occur is the following:
 ## 1. the user updates some configure dependency (let's say foo.m4)
-##    and run `make'
+##    and runs `make'
 ## 2. the rebuild rules detect that a foo.m4 has changed,
 ##    run aclocal, autoconf, automake, and then run ./config.status.
 ##    (Note that autoheader hasn't been called yet, so ./config.status
 ##    outputs a config.h from an obsolete config.hin.)
 ## 3. Once Makefile has been regenerated, make continues, and
-##    discover that config.h is a dependency of the `all' rule.
+##    discovers that config.h is a dependency of the `all' rule.
 ##    Because config.h depends on stamp-h1, stamp-h1 depends on
 ##    config.hin, and config.hin depends on aclocal.m4, make runs
 ##    autoheader to rebuild config.hin.