ls -LR should follow symbolic link directories which it does not, as the following output shows. Output of ls -LR .: dir symdir ./dir: file1 file2 Output of ls -lLR on the same directory .: total 0 drwxr-xr-x 2 daniel users 80 2007-05-27 17:20 dir drwxr-xr-x 2 daniel users 80 2007-05-27 17:20 symdir ./dir: total 0 -rw-r--r-- 1 daniel users 0 2007-05-27 17:20 file1 -rw-r--r-- 1 daniel users 0 2007-05-27 17:20 file2 ./symdir: total 0 -rw-r--r-- 1 daniel users 0 2007-05-27 17:20 file1 -rw-r--r-- 1 daniel users 0 2007-05-27 17:20 file2 Reproducible: Always Steps to Reproduce: 1. run ls -LR on a directory with symbolic link directories 2. 3. TeX uses ls -LR in mktexlsr to produce ls-R files. Because TeX Documentation is symlinked from /usr/share/doc/ to /usr/share/texmf documentation cannot be found anymore with texdoc.
The problem seems to be solved with the latest coreutils-6.9-r1. Now the output of ls -LR is as expected: .: dir symdir ./dir: file1 file2 ./symdir: file1 file2
(In reply to comment #1) > The problem seems to be solved with the latest coreutils-6.9-r1. Now the output > of ls -LR is as expected: Closing then.