Hello

I'm attempted installing shadow-4.1.4.3, however, running make results in

gcc: error: /lib64/libpam_misc.so: No such file or directory
gcc: error: /lib64/libpam.so: No such file or directory.
etc etc.

The last step from Linux-PAM is:

if [ -L /lib/libpam.so ]; then
   for LINK in libpam{,c,_misc}.so; do
       ln -v -sf ../../lib/$(readlink /lib/${LINK}) /usr/lib/${LINK} &&
       rm -v /lib/${LINK}
   done
fi

So these files are in another path, /usr/lib. I suppose I should

sed -i -e '|/lib64/libpam_misc.so|/usr/lib64/libpam_misc.so' -e \
         -e '|/lib64/libpam.so|/usr/lib64/libpam.so|' <somefile>

To modify the shadow build scripts in order to point to the right path.
However, I don't know what file, and I'm also not sure how this sed syntax
should be.

Thanks in advance, Ronnie.
-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to