From: Stepan Kasal Date: Tue, 13 May 2008 12:46:39 +0000 (+0200) Subject: Fix typos. X-Git-Tag: v1.10b~139 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5df87ac91dae8fa245911c2153e1d388c7b70d14;p=thirdparty%2Fautomake.git Fix typos. * doc/automake.texi (Timeline): Reported by Reuben Thomas. * lib/am/remake-hdr.am: A few typos in comments. Signed-off-by: Stepan Kasal --- diff --git a/ChangeLog b/ChangeLog index e134e4a7f..9eea7e5d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-05-13 Stepan Kasal + + 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 Prefer a released version of autoconf. diff --git a/doc/automake.texi b/doc/automake.texi index baf5c7702..a8f3403c7 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -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 diff --git a/lib/am/remake-hdr.am b/lib/am/remake-hdr.am index 2d6eaebea..6e3ebcdaf 100644 --- a/lib/am/remake-hdr.am +++ b/lib/am/remake-hdr.am @@ -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.