Explorar o código

layout fixes

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@933 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Mark Hymers %!s(int64=24) %!d(string=hai) anos
pai
achega
a9b23091c0
Modificáronse 2 ficheiros con 6 adicións e 4 borrados
  1. 4 3
      chapter06/shadowpwd-exp.xml
  2. 2 1
      chapter06/shadowpwd-inst.xml

+ 4 - 3
chapter06/shadowpwd-exp.xml

@@ -1,9 +1,10 @@
 <sect2>
 <title>Command explanations</title>
 
-<para><userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' useradd.c.temp
-&gt; src/useradd.c</userinput>: This sed is used to fix a compilation
-bug which occurs due to a variable being used but not defined.</para>
+<para><userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' src/useradd.c 
+&gt; useradd.c.temp &amp;&amp;</userinput>: This sed is used to fix a 
+compilation bug which occurs due to a variable (nflg), being used but not 
+defined.</para>
 
 <para><userinput>cp limits login.access and others:</userinput> These files
 were not installed during the installation of the package so we copy

+ 2 - 1
chapter06/shadowpwd-inst.xml

@@ -5,7 +5,8 @@
 following commands:</para>
 
 
-<para><screen><userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' src/useradd.c &gt; useradd.c.temp &amp;&amp;</userinput>
+<para><screen><userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' \</userinput>
+<userinput>	src/useradd.c &gt; useradd.c.temp &amp;&amp;</userinput>
 <userinput>mv useradd.c.temp src/useradd.c &amp;&amp;</userinput>
 <userinput>./configure --prefix=/usr &amp;&amp;</userinput>
 <userinput>make &amp;&amp;</userinput>