linuxcbon wrote:
hi all,


SPECFILE=`gcc --print-file specs` &&
sed 's@ /lib/ld-linux.so.2@
/tools/lib/[EMAIL PROTECTED]' \
    $SPECFILE > tempspecfile &&
mv -f tempspecfile $SPECFILE &&
unset SPECFILE

doesnt work for me.


This works for me :

SPECFILE=$(gcc --print-file specs) &&
sed 's@ /lib/ld-linux.so.2@
/tools/lib/[EMAIL PROTECTED]' $SPECFILE > tempspecfile
&&
mv -f tempspecfile $SPECFILE &&
unset SPECFILE


Regards
Again, the book's instructions work fine. You were probably using the wrong quote marks.
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to