laurent wrote:
Chris Staub wrote:
laurent wrote:
Sorry Chris, but I make the sed command! In bash sripts or by hand
directly but nothing change!
AAARRRRRRRGGGGGGHHHHHHHHHHHH!!!!!!!!!!
No you did not, or what you typed was incorrect. Please attach the
script you used.
ok, in this script i test at the end if mount was linked with the good
interpreter...
------------------------------------------------------------------------
echo "Test"
cd $installdir
readelf -l /mnt/lfs/tools/bin/mount | grep interpreter > test
grep -c 'Requesting program interpreter: /tools/lib/ld-linux.so.2' test
if [ $? != 0 ]
then
echo "Test échoué!"
rm -rfv test
exit
fi
echo "Test ok!"
rm -rfv test
exit
Well, everything seems to look good there, but the fact is that you have
pasted output indicating that mount *is* linked against libraries in
/lib, so there is clearly something wrong. What happens when you try this...
echo 'main(){}' > dummy.c
cc dummy.c
readelf -l a.out | grep interp
--
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page