aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/config-ldso.xml
diff options
context:
space:
mode:
authorMark Hymers <markh@linuxfromscratch.org>2001-07-22 19:45:10 +0000
committerMark Hymers <markh@linuxfromscratch.org>2001-07-22 19:45:10 +0000
commitb822811980a5f82726cb641cbeff66be9eb6d92a (patch)
tree27c4db3c62aaea065b053e43c39b2ba44c04a05f /chapter06/config-ldso.xml
parent46f5461af92bc70c62bbb92895032b930954d835 (diff)
XML changes
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@827 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/config-ldso.xml')
-rw-r--r--chapter06/config-ldso.xml26
1 files changed, 8 insertions, 18 deletions
diff --git a/chapter06/config-ldso.xml b/chapter06/config-ldso.xml
index 04fb4960e..7bb4768e8 100644
--- a/chapter06/config-ldso.xml
+++ b/chapter06/config-ldso.xml
@@ -1,25 +1,19 @@
<sect2>
<title>Configuring Dynamic Loader</title>
-<para>
-By default the dynamic loader searches a few default paths for dynamic
+<para>By default the dynamic loader searches a few default paths for dynamic
libraries, so there normally isn't a need for the
<filename>/etc/ld.so.conf</filename> file unless the system has extra
directories in which a user wants the system to search for paths. The
<filename class="directory">/usr/local/lib</filename> directory isn't
searched through for dynamic libraries by default, so we want to add
this path so when you install software you won't be surprised by them not
-running for some reason.
-</para>
+running for some reason.</para>
-<para>
-Create a new file <filename>/etc/ld.so.conf</filename> by running the
-following:
-</para>
+<para>Create a new file <filename>/etc/ld.so.conf</filename> by running the
+following:</para>
-<para>
-<screen>
-<userinput>cat &gt; /etc/ld.so.conf &lt;&lt; "EOF"</userinput>
+<para><screen><userinput>cat &gt; /etc/ld.so.conf &lt;&lt; "EOF"</userinput>
# Begin /etc/ld.so.conf
/lib
@@ -27,17 +21,13 @@ following:
/usr/local/lib
# End /etc/ld.so.conf
-<userinput>EOF</userinput>
-</screen>
-</para>
+<userinput>EOF</userinput></screen></para>
-<para>
-Although it's not necessary to add the
+<para>Although it's not necessary to add the
<filename class="directory">/lib</filename> and
<filename class="directory">/usr/lib</filename> directories it doesn't
hurt. This way it can be seen right away what's being searched and a you
-don't have to remember the default search paths if you don't want to.
-</para>
+don't have to remember the default search paths if you don't want to.</para>
</sect2>