aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/bison.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chapter06/bison.xml')
-rw-r--r--chapter06/bison.xml13
1 files changed, 7 insertions, 6 deletions
diff --git a/chapter06/bison.xml b/chapter06/bison.xml
index 9f3c94782..4bcaf2f3e 100644
--- a/chapter06/bison.xml
+++ b/chapter06/bison.xml
@@ -42,25 +42,26 @@
<para>Prepare Bison for compilation:</para>
-<screen><userinput>./configure --prefix=/usr</userinput></screen>
+<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
<para>The configure system causes bison to be built without support for
internationalization of error messages if a <command>bison</command>
program is not already in $PATH. The following addition will correct
this:</para>
-<screen><userinput>echo '#define YYENABLE_NLS 1' &gt;&gt; config.h</userinput></screen>
+<screen><userinput remap="configure">echo '#define YYENABLE_NLS 1' &gt;&gt; config.h</userinput></screen>
<para>Compile the package:</para>
-<screen><userinput>make</userinput></screen>
+<screen><userinput remap="make">make</userinput></screen>
- <para>To test the results, issue:
- <userinput>make check</userinput>.</para>
+ <para>To test the results, issue:</para>
+
+<screen><userinput remap="test">make check</userinput></screen>
<para>Install the package:</para>
-<screen><userinput>make install</userinput></screen>
+<screen><userinput remap="install">make install</userinput></screen>
</sect2>