Browse Source

Adding a forgotten backslash in the re-adjustment sed command.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2692 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Alex Gronenwoud 22 năm trước cách đây
mục cha
commit
fa8a9a6302
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      chapter06/adjustingtoolchain.xml

+ 1 - 1
chapter06/adjustingtoolchain.xml

@@ -32,7 +32,7 @@ this:</para>
 
 <para><screen><userinput>SPECFILE=/stage1/lib/gcc-lib/*/*/specs
 sed -e 's@/stage1/lib/ld.so.1@/lib/ld.so.1@g' \
-&nbsp;&nbsp;&nbsp;&nbsp;-e 's@/stage1/lib/ld-linux.so.2@/lib/ld-linux.so.2@g'
+&nbsp;&nbsp;&nbsp;&nbsp;-e 's@/stage1/lib/ld-linux.so.2@/lib/ld-linux.so.2@g' \
 &nbsp;&nbsp;&nbsp;&nbsp;$SPECFILE > newspecfile
 mv newspecfile $SPECFILE
 unset SPECFILE</userinput></screen></para>