mrdaniel wrote:
> [1] in ch 6.21.1, pg114 - ncurses-5.4, doing the link line :-
> ln -sfv libncurses.so /usr/lib/libcurses.so
> 
> note that the 'n' is not present in the word after /lib.
> so i added the 'n' into "libcurses" becomes and it became "libucurses". 
> 
> is it ok.

No. libncurses.so is the real library name, the one that ncurses builds
and installs. We *want* packages that look for libcurses.so to find the
compatible libncurses.so file so we make a link to it.

This is what you're supposed to have:
$ ls -l /usr/lib/libcurses.*
lrwxrwxrwx 1 root root 12 2005-11-26 19:34 /usr/lib/libcurses.a ->
libncurses.a
lrwxrwxrwx 1 root root 13 2005-11-26 19:34 /usr/lib/libcurses.so ->
libncurses.so


> [2] in ch6.50.1 pg166, the option "--strip-path=1" is not valid and hence 
> replaced with "--strip-components=1" , is that ok too.
> 

Yes, this is in fact a valid note. Tar changed its syntax recently.
Thank you.

--
JH
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-dev
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to