diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-03-02 19:29:23 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-03-02 19:29:23 +0000 |
commit | 8dbddfb248e87ab7ba0ae9a1c2d2c77460d0b6b0 (patch) | |
tree | 4dbec14bf69faa4196a6a317007a94989cd9fbb2 | |
parent | 44a7fad22b6c10a0ce72727fa0d4bcb46bca5ac2 (diff) |
Replaced && by &&
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@254 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter06/bzip2-inst.xml | 6 | ||||
-rw-r--r-- | chapter07/rc.xml | 2 | ||||
-rw-r--r-- | index.xml | 7 |
3 files changed, 9 insertions, 6 deletions
diff --git a/chapter06/bzip2-inst.xml b/chapter06/bzip2-inst.xml index 1e244d197..580643476 100644 --- a/chapter06/bzip2-inst.xml +++ b/chapter06/bzip2-inst.xml @@ -16,8 +16,10 @@ Install Bzip2 by running the following commands: <userinput>cp -a libbz2.so* libbz2.a /lib &&</userinput> <userinput>rm /usr/lib/libbz2.a &&</userinput> <userinput>cd /bin &&</userinput> - <userinput>rm bunzip2 && ln -s bzip2 bunzip2 &&</userinput> - <userinput>rm bzcat && ln -s bzip2 bzcat &&</userinput> + <userinput>rm bunzip2 && ln -s bzip2 bunzip2 + &&</userinput> + <userinput>rm bzcat && ln -s bzip2 bzcat + &&</userinput> <userinput>cd /usr/share/man/man1 &&</userinput> <userinput>ln -s bzip2.1 bunzip2.1 &&</userinput> <userinput>ln -s bzip2.1 bzcat.1 &&</userinput> diff --git a/chapter07/rc.xml b/chapter07/rc.xml index 3aba51da3..16dfe2e8a 100644 --- a/chapter07/rc.xml +++ b/chapter07/rc.xml @@ -85,7 +85,7 @@ runlevel=$RUNLEVEL # was passed to this script we won't change runlevels. # -[ "$1" != "" ] && runlevel=$1 +[ "$1" != "" ] && runlevel=$1 if [ "$runlevel" = "" ] then echo "Usage: $0 <runlevel>" >&2 @@ -1,10 +1,11 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" [ +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "/usr/share/docbook/docbookx.dtd" [ <!ENTITY book SYSTEM "intel/book/book.xml"> -<!ENTITY version "3.0-PRE1"> -<!ENTITY releasedate "February 27th, 2001"> +<!ENTITY version "3.0-CVS-2001-03-02"> +<!ENTITY releasedate "March 2nd, 2001"> <!ENTITY type "INTEL"> <!ENTITY ftp-root "ftp://packages.linuxfromscratch.org"> |