aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-09-02 19:24:11 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-09-02 19:24:11 +0000
commit51b891fc4ee51b3ee32aa0b01b0ab5da0584a966 (patch)
treed661a37cd0f251916c4ee1d845ceaa9a59f5528d /chapter06
parenta5e3273f4874be527708b453a974a138408d418f (diff)
added missing &&
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1163 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/shadowpwd-inst.xml2
-rw-r--r--chapter06/vim-inst.xml4
2 files changed, 3 insertions, 3 deletions
diff --git a/chapter06/shadowpwd-inst.xml b/chapter06/shadowpwd-inst.xml
index 120324e2c..97972389d 100644
--- a/chapter06/shadowpwd-inst.xml
+++ b/chapter06/shadowpwd-inst.xml
@@ -13,7 +13,7 @@ following commands:</para>
<userinput>make install &amp;&amp;</userinput>
<userinput>cd etc &amp;&amp;</userinput>
<userinput>cp limits login.access /etc &amp;&amp;</userinput>
-<userinput>sed 's%/var/spool/mail%/var/mail%' login.defs.linux &gt; /etc/login.defs</userinput>
+<userinput>sed 's%/var/spool/mail%/var/mail%' login.defs.linux &gt; /etc/login.defs &amp;&amp;</userinput>
<userinput>cd /lib &amp;&amp;</userinput>
<userinput>mv libshadow.a /usr/lib &amp;&amp;</userinput>
<userinput>mv libshadow.la /usr/lib &amp;&amp;</userinput>
diff --git a/chapter06/vim-inst.xml b/chapter06/vim-inst.xml
index f75753935..3db92734c 100644
--- a/chapter06/vim-inst.xml
+++ b/chapter06/vim-inst.xml
@@ -13,7 +13,7 @@ won't overwrite any files from the other package. So it doesn't matter
in which order it is done. Install Vim by running the following commands:</para>
<para><screen><userinput>echo '#define SYS_VIMRC_FILE "/etc/vimrc"' &gt;&gt; \
-&nbsp;&nbsp;&nbsp;src/feature.h</userinput>
+&nbsp;&nbsp;&nbsp;src/feature.h &amp;&amp;</userinput>
<userinput>./configure --prefix=/usr &amp;&amp;</userinput>
<userinput>make &amp;&amp;</userinput>
<userinput>make install &amp;&amp;</userinput>
@@ -37,7 +37,7 @@ If you wish vim to conform to the FHS, you should use this command set
instead of the one presented above:</para>
<para><screen><userinput>echo '#define SYS_VIMRC_FILE "/etc/vimrc"' &gt;&gt; \
-&nbsp;&nbsp;&nbsp;src/feature.h</userinput>
+&nbsp;&nbsp;&nbsp;src/feature.h &amp;&amp;</userinput>
<userinput>./configure --prefix=/usr --localstatedir=/var/lib/vim &amp;&amp;</userinput>
<userinput>make &amp;&amp;</userinput>
<userinput>make install &amp;&amp;</userinput>