]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
(Limitations of Usual Tools): Document bug in Solaris 8 join.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 13 Jan 2005 21:03:11 +0000 (21:03 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 13 Jan 2005 21:03:11 +0000 (21:03 +0000)
doc/autoconf.texi

index a710ba543dc8f3d96875a2b0155fc75c2765b2c6..4d42608eb940ecf3f729b806270910d767f221d6 100644 (file)
@@ -11675,6 +11675,24 @@ Don't rely on @option{-w}, as Irix 6.5.16m's @command{grep} does not
 support it.
 
 
+@item @command{join}
+@c -----------------
+@prindex @command{join}
+Solaris 8 @command{join} has bugs when the second operand is standard
+input, and when standard input is a pipe.  For example, the following
+shell script causes Solaris 8 @command{join} to loop forever:
+
+@example
+cat >file <<'EOF'
+1 x
+2 y
+EOF
+cat file | join file -
+@end example
+
+Use @samp{join - file} instead.
+
+
 @item @command{ln}
 @c ---------------
 @prindex @command{ln}