diff options
author | Jeremy Utley <jeremy@linuxfromscratch.org> | 2004-09-10 13:02:16 +0000 |
---|---|---|
committer | Jeremy Utley <jeremy@linuxfromscratch.org> | 2004-09-10 13:02:16 +0000 |
commit | 6e8fc7d1996534dff1a06687e630c1f01aaf832f (patch) | |
tree | c70af451af8f3d22bd3a6e31f997d2ac4d83115f /chapter06 | |
parent | b72295579dc15cdb2546b64f42fa184b63590fc6 (diff) |
Resolved bug 895 with a modification to our glibc lockin instructions in chapter 6.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4150 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/readjusting.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chapter06/readjusting.xml b/chapter06/readjusting.xml index c7ab66921..a3522a663 100644 --- a/chapter06/readjusting.xml +++ b/chapter06/readjusting.xml @@ -52,7 +52,8 @@ this:</para> <!-- Ampersands are needed to allow cut and paste --> -<screen><userinput>sed -i 's@ /tools/lib/ld-linux.so.2@ /lib/ld-linux.so.2@g' \ +<screen><userinput>perl -pi -e 's@ /tools/lib/ld-linux.so.2@ /lib/ld-linux.so.2@g;' \ + -e 's@\*startfile_prefix_spec:\n@$_/usr/lib/@g;' \ `gcc --print-file specs`</userinput></screen> <para>Again, cutting and pasting the above is recommended. And just like |