diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-06-19 13:39:28 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-06-19 13:39:28 +0000 |
commit | 8ad79807a3c97e18a90319c9b91018b0be2bbb3c (patch) | |
tree | 2c81e99ccc07955e04e833dd91650e7a3385cbe5 /chapter06/readjusting.xml | |
parent | ef57e3bcf1a7fb7eda2717fc2334fe599da01888 (diff) |
Tags corrections
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3812 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/readjusting.xml')
-rw-r--r-- | chapter06/readjusting.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter06/readjusting.xml b/chapter06/readjusting.xml index a81c540f6..c7ab66921 100644 --- a/chapter06/readjusting.xml +++ b/chapter06/readjusting.xml @@ -35,11 +35,11 @@ however, our testing has shown that the resulting Binutils program binaries should be identical.</para></note> <para>From now on every compiled program will link <emphasis>only</emphasis> -against the libraries in <filename>/usr/lib</filename> and -<filename>/lib</filename>. The extra -<emphasis>INSTALL=/tools/bin/install</emphasis> is needed because the Makefile +against the libraries in <filename class="directory">/usr/lib</filename> and +<filename class="directory">/lib</filename>. The extra +<parameter>INSTALL=/tools/bin/install</parameter> is needed because the Makefile created during the second pass still contains the reference to -<filename>/usr/bin/install</filename>, which we obviously haven't installed yet. +<command>/usr/bin/install</command>, which we obviously haven't installed yet. Some host distributions contain a <filename class="symlink">ginstall</filename> symbolic link which takes precedence in the Makefile and thus can cause a problem here. The above command takes care of this also.</para> @@ -78,7 +78,7 @@ readelf -l a.out | grep ': /lib'</userinput></screen> output of the last command will be (allowing for platform specific differences in dynamic linker name):</para> -<blockquote><screen>[Requesting program interpreter: /lib/ld-linux.so.2]</screen></blockquote> +<screen><computeroutput>[Requesting program interpreter: /lib/ld-linux.so.2]</computeroutput></screen> <para>Note especially that <filename class="directory">/lib</filename> is now the prefix of our dynamic linker.</para> |