]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix grammatical typos.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 17 May 2004 05:01:45 +0000 (05:01 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 17 May 2004 05:01:45 +0000 (05:01 +0000)
doc/autoconf.texi

index 0bdc972ced85d929fb14c9fb584084ebaedc2527..1b2342549ddd154efe66609985abadc71b3820fc 100644 (file)
@@ -11618,9 +11618,9 @@ later) @command{make} will diagnose these uses and error out.
 
 @item Command execution
 Since 1992 @acronym{POSIX} has required that @command{make} must invoke
-each command with the equivalent of @samp{sh -c} subshell.  However,
-many @command{make} implementations, including BSD make through circa
-2004, use @samp{sh -e -c} instead, and the @option{-e} option causes the
+each command with the equivalent of @samp{sh -c} subshell.  However,
+many @command{make} implementations, including BSD make through 2004,
+use @samp{sh -e -c} instead, and the @option{-e} option causes the
 subshell to exit immediately if a subsidiary simple-command fails.  For
 example, the command @samp{touch T; rm -f U} will always attempt to
 remove @file{U} with @acronym{POSIX} make, but incompatible