aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorGreg Schafer <greg@linuxfromscratch.org>2003-10-29 02:17:47 +0000
committerGreg Schafer <greg@linuxfromscratch.org>2003-10-29 02:17:47 +0000
commit65e5785c1e4735252bc4a4be7928b4b1aa084819 (patch)
tree4f5212e5b8d269e0ae939678d4bf529f306ef639 /chapter05
parent0eb0afb41d6c6ccc1448550fd00761ad8d5d889d (diff)
Strengthened the seds in "Locking in Glibc" and "Re-adjusting the toolchain" sections.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3046 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/lockingglibc.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter05/lockingglibc.xml b/chapter05/lockingglibc.xml
index db2286b49..eb2f1c7d1 100644
--- a/chapter05/lockingglibc.xml
+++ b/chapter05/lockingglibc.xml
@@ -33,7 +33,7 @@ to the new dynamic linker. A simple sed will accomplish this:</para>
<!-- Ampersands are needed to allow cut and paste -->
<screen><userinput>SPECFILE=/tools/lib/gcc-lib/*/*/specs &amp;&amp;
-sed -e 's@/lib/ld-linux.so.2@/tools/lib/ld-linux.so.2@g' \
+sed -e 's@ /lib/ld-linux.so.2@ /tools/lib/ld-linux.so.2@g' \
&nbsp;&nbsp;&nbsp;&nbsp;$SPECFILE &gt; tempspecfile &amp;&amp;
mv -f tempspecfile $SPECFILE &amp;&amp;
unset SPECFILE</userinput></screen>