diff options
Diffstat (limited to 'chapter05/bison.xml')
-rw-r--r-- | chapter05/bison.xml | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/chapter05/bison.xml b/chapter05/bison.xml index 98c8cdc35..e6ed2a7f8 100644 --- a/chapter05/bison.xml +++ b/chapter05/bison.xml @@ -45,19 +45,31 @@ <para>Prepare Bison for compilation:</para> -<screen><userinput remap="configure">./configure --prefix=/tools</userinput></screen> +<screen><userinput remap="configure">./configure --prefix=/usr \ + --build=$(build-aux/config.guess) \ + --host=$LFS_TGT \ + --docdir=/usr/share/doc/bison-&bison-version;</userinput></screen> - <para>Compile the package:</para> + <variablelist> + <title>The meaning of the new configure option:</title> -<screen><userinput remap="make">make</userinput></screen> + <varlistentry> + <term><parameter>--docdir=/usr/share/doc/bison-&bison-version;</parameter></term> + <listitem> + <para>This tells the build system to install bison documentation + into a versioned directory.</para> + </listitem> + </varlistentry> - <para>To test the results, issue:</para> + </variablelist> -<screen><userinput remap="test">make check</userinput></screen> + <para>Compile the package:</para> + +<screen><userinput remap="make">make</userinput></screen> <para>Install the package:</para> -<screen><userinput remap="install">make install</userinput></screen> +<screen><userinput remap="install">make DESTDIR=$LFS install</userinput></screen> </sect2> |