diff options
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/adjustingtoolchain.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chapter06/adjustingtoolchain.xml b/chapter06/adjustingtoolchain.xml index c20a67be8..f07562f9c 100644 --- a/chapter06/adjustingtoolchain.xml +++ b/chapter06/adjustingtoolchain.xml @@ -40,10 +40,12 @@ problem here. The above command takes care of this also.</para> to the new dynamic linker. Just like earlier on, we use a sed to accomplish this:</para> -<screen><userinput>SPECFILE=/tools/lib/gcc-lib/*/*/specs +<!-- Ampersands are needed to allow cut and paste --> + +<screen><userinput>SPECFILE=/tools/lib/gcc-lib/*/*/specs && sed -e 's@/tools/lib/ld-linux.so.2@/lib/ld-linux.so.2@g' \ - $SPECFILE > newspecfile -mv newspecfile $SPECFILE + $SPECFILE > newspecfile && +mv -f newspecfile $SPECFILE && unset SPECFILE</userinput></screen> <para>Again, cutting and pasting the above is recommended. And just like |