diff options
author | Greg Schafer <greg@linuxfromscratch.org> | 2003-10-16 06:54:55 +0000 |
---|---|---|
committer | Greg Schafer <greg@linuxfromscratch.org> | 2003-10-16 06:54:55 +0000 |
commit | d5f8a8fb450367a3e8e1724f81b50576290fc248 (patch) | |
tree | 2afab4d910cb200c5cf5e2fb9c82327bd1944b6a /chapter06 | |
parent | 234c74e3330f9225e7e0489039a8cc09513817ba (diff) |
Fine tune toolchain adjustment commands.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2994 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
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 |