aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/bzip2.xml
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2007-09-18 21:11:00 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2007-09-18 21:11:00 +0000
commit0445a3d50660d84f11d095db0177078f4f5cd8a0 (patch)
tree0a498ecf0a0714891f5c4576bc508558268283a8 /chapter06/bzip2.xml
parenta7a02386b4c83ed74790c1918c80f1fffc3af472 (diff)
Added remap attributes to userinput tags in packages pages.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8389 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/bzip2.xml')
-rw-r--r--chapter06/bzip2.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter06/bzip2.xml b/chapter06/bzip2.xml
index 28ffd0f6b..8900da74c 100644
--- a/chapter06/bzip2.xml
+++ b/chapter06/bzip2.xml
@@ -45,11 +45,11 @@
<para>Apply a patch to install the documentation for this package:</para>
-<screen><userinput>patch -Np1 -i ../&bzip2-docs-patch;</userinput></screen>
+<screen><userinput remap="pre">patch -Np1 -i ../&bzip2-docs-patch;</userinput></screen>
<para>Prepare Bzip2 for compilation with:</para>
-<screen><userinput>make -f Makefile-libbz2_so
+<screen><userinput remap="make">make -f Makefile-libbz2_so
make clean</userinput></screen>
<variablelist>
@@ -70,17 +70,17 @@ make clean</userinput></screen>
<para>Compile and test the package:</para>
-<screen><userinput>make</userinput></screen>
+<screen><userinput remap="make">make</userinput></screen>
<para>Install the programs:</para>
-<screen><userinput>make PREFIX=/usr install</userinput></screen>
+<screen><userinput remap="install">make PREFIX=/usr install</userinput></screen>
<para>Install the shared <command>bzip2</command> binary into the
<filename class="directory">/bin</filename> directory, make
some necessary symbolic links, and clean up:</para>
-<screen><userinput>cp -v bzip2-shared /bin/bzip2
+<screen><userinput remap="install">cp -v bzip2-shared /bin/bzip2
cp -av libbz2.so* /lib
ln -sv ../../lib/libbz2.so.1.0 /usr/lib/libbz2.so
rm -v /usr/bin/{bunzip2,bzcat,bzip2}