aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/perl.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chapter05/perl.xml')
-rw-r--r--chapter05/perl.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/chapter05/perl.xml b/chapter05/perl.xml
index 0885cbbec..ad27d07ce 100644
--- a/chapter05/perl.xml
+++ b/chapter05/perl.xml
@@ -46,18 +46,18 @@
<para>First adapt some hard-wired paths to the C library by applying
the following patch:</para>
-<screen><userinput>patch -Np1 -i ../&perl-libc-patch;</userinput></screen>
+<screen><userinput remap="pre">patch -Np1 -i ../&perl-libc-patch;</userinput></screen>
<para>Fix an incompatibility with gcc-&gcc-version;:</para>
-<screen><userinput>mv -v makedepend.SH{,.orig}
+<screen><userinput remap="pre">mv -v makedepend.SH{,.orig}
sed 's/command /command[ -]/' makedepend.SH.orig &gt; makedepend.SH</userinput></screen>
<para>Prepare Perl for compilation (make sure to get the
'Data/Dumper Fcntl IO POSIX' part of the command correct&mdash;they are all
letters):</para>
-<screen><userinput>./configure.gnu --prefix=/tools -Dstatic_ext='Data/Dumper Fcntl IO POSIX'</userinput></screen>
+<screen><userinput remap="configure">./configure.gnu --prefix=/tools -Dstatic_ext='Data/Dumper Fcntl IO POSIX'</userinput></screen>
<variablelist>
<title>The meaning of the configure options:</title>
@@ -67,7 +67,7 @@ sed 's/command /command[ -]/' makedepend.SH.orig &gt; makedepend.SH</userinput><
<listitem>
<para>This tells Perl to build the minimum set of static extensions
needed for installing and testing the Coreutils and Glibc packages in the
- next chapter.</para>
+ next chapter.</para>
</listitem>
</varlistentry>
@@ -76,7 +76,7 @@ sed 's/command /command[ -]/' makedepend.SH.orig &gt; makedepend.SH</userinput><
<para>Only a few of the utilities contained in this package need to be
built:</para>
-<screen><userinput>make perl utilities</userinput></screen>
+<screen><userinput remap="make">make perl utilities</userinput></screen>
<para>Although Perl comes with a test suite, it is not recommended to
run it at this point. Only part of Perl was built and running
@@ -86,7 +86,7 @@ sed 's/command /command[ -]/' makedepend.SH.orig &gt; makedepend.SH</userinput><
<para>Install these tools and their libraries:</para>
-<screen><userinput>cp -v perl pod/pod2man /tools/bin
+<screen><userinput remap="install">cp -v perl pod/pod2man /tools/bin
mkdir -pv /tools/lib/perl5/&perl-version;
cp -Rv lib/* /tools/lib/perl5/&perl-version;</userinput></screen>