aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/readjusting.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chapter06/readjusting.xml')
-rw-r--r--chapter06/readjusting.xml10
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>