diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2006-02-02 21:03:09 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2006-02-02 21:03:09 +0000 |
commit | 8ef83047f979cb4addce1547008b3981359e3304 (patch) | |
tree | a011b339121f99a27adba838870c4846de0bd90b /chapter06/createfiles.xml | |
parent | 92474b451445f3a1822c5ce6353ff91ff9d65e2d (diff) |
Indenting chapter 6, part 3
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7325 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/createfiles.xml')
-rw-r--r-- | chapter06/createfiles.xml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/chapter06/createfiles.xml b/chapter06/createfiles.xml index 734fedc33..03107ce8d 100644 --- a/chapter06/createfiles.xml +++ b/chapter06/createfiles.xml @@ -1,16 +1,19 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [ +<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" + "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [ <!ENTITY % general-entities SYSTEM "../general.ent"> %general-entities; ]> + <sect1 id="ch-system-createfiles"> -<title>Creating Essential Symlinks</title> -<?dbhtml filename="createfiles.html"?> + <?dbhtml filename="createfiles.html"?> + + <title>Creating Essential Symlinks</title> -<para>Some programs use hard-wired paths to programs which do not exist yet. In -order to satisfy these programs, create a number of symbolic links which will be -replaced by real files throughout the course of this chapter after the software -has been installed.</para> + <para>Some programs use hard-wired paths to programs which do not exist yet. In + order to satisfy these programs, create a number of symbolic links which will be + replaced by real files throughout the course of this chapter after the software + has been installed.</para> <screen><userinput>ln -sv /tools/bin/{bash,cat,pwd,stty} /bin ln -sv /tools/bin/perl /usr/bin @@ -18,4 +21,3 @@ ln -sv /tools/lib/libgcc_s.so{,.1} /usr/lib ln -sv bash /bin/sh</userinput></screen> </sect1> - |