On 4/19/07, Dan Dis <[EMAIL PROTECTED]> wrote: > Hallo! > > In Chapter 6.12.1. Installation of GCC, I've to do the following two commands > now: > > ln -sv ../usr/bin/cpp /lib > ln -sv gcc /usr/bin/cc > > My working directory is: /sources/gcc-build > > Now I am confused! Are the commands, especially the pathes or my working > directory right?? > Should the first command be? > ln -sv ../../usr/bin/cpp /lib > and the second? > > ??? > > I need help, I need answers! > Thank you!
no, they are fine. ln -sv ../usr/bin/cpp /lib will link /lib/cpp to /lib/../usr/bin/cpp (= /usr/bin/cpp) and ln -sv gcc /usr/bin/cc will link /usr/bin/cc to gcc (=/usr/bin/gcc) Tijnema > > Im www.uni.de Apple Store findet ihr die Palette der Apple Produkte zum > Studentenpreis -- powered by uni.de -- > -- > http://linuxfromscratch.org/mailman/listinfo/lfs-support > FAQ: http://www.linuxfromscratch.org/lfs/faq.html > Unsubscribe: See the above information page > -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
