+2008-09-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ Mention Solaris sh ':' redirection bug.
+ * doc/autoconf.texi (File Descriptors): Redirecting ':'
+ in a loop causes bogus optimization with Solaris sh.
+
2008-09-10 Eric Blake <ebb9@byu.net>
Avoid testsuite bug when autom4te cache is disabled by user.
@samp{matter} and @file{void} being empty. However, this bug is
probably not of practical concern to modern platforms.
+Solaris 10 @command{sh} will try to optimize away a @command{:} command
+in a loop after the first iteration, even if it is redirected:
+
+@example
+$ @kbd{for i in 1 2 3 ; do : >x$i; done}
+$ @kbd{ls}
+x1
+@end example
+
+@noindent
+As a workaround, @command{echo} or @command{eval} can be used.
+
Don't rely on file descriptors 0, 1, and 2 remaining closed in a
subsidiary program. If any of these descriptors is closed, the
operating system may open an unspecified file for the descriptor in the