--- M Sandell <[EMAIL PROTECTED]> wrote: > When I was installing the UnZip package (Chpt 11, BLFS 6.1) the command > from the book: > > LD_LIBRARY_PATH=$PWD && make check > > failed. Although LD_LIBRARY_PATH was set appropriately by the command,...
It seems to be a mistake. The way the shell works, the command LD_LIBRARY_PATH=$PWD only sets a local variable, and it is not exported. Unless a variable is exported, external commands like 'make check' will not see its contents. Try this: export LD_LIBRARY_PATH=$PWD && make check __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
