Gerard Beekmans wrote: > The following command in chapter 6's glibc: > > make -k check >glibc-check-log 2>&1 > > Could stand with a bit of modification so it outputs to both the > screen as well as the log file. As it is, there is no output on the > screen at all, which is so unlike any other make and make check run > from the book.
I prefer to see a command output at the screen especially if it runs for tens of minutes as glibc checking does, so I used the following to redirect the logs both to the screen and to a file: make -k check 2>&1 |tee glibc-check-log tee is present in LFS and even in the temporary /tools system so the command can be used while building LFS. -- Nothing but perfection pv -- http://linuxfromscratch.org/mailman/listinfo/lfs-dev FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page