diff options
Diffstat (limited to 'chapter06/bison.xml')
-rw-r--r-- | chapter06/bison.xml | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/chapter06/bison.xml b/chapter06/bison.xml index af13eef5d..568b34c9f 100644 --- a/chapter06/bison.xml +++ b/chapter06/bison.xml @@ -40,17 +40,14 @@ <sect2 role="installation"> <title>Installation of Bison</title> + <para>Inhibit static library installation:</para> + +<screen><userinput remap="pre">sed -i '/lib_LIBRARIES =/d' Makefile.in</userinput></screen> + <para>Prepare Bison for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/bison-&bison-version;</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 remap="configure">echo '#define YYENABLE_NLS 1' >> lib/config.h</userinput></screen> ---> + <para>Compile the package:</para> <screen><userinput remap="make">make</userinput></screen> |