diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2023-02-08 20:15:02 -0600 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2023-02-08 20:15:02 -0600 |
commit | 583156ac09d7853d8aa050633c7a6dfd18c9eda0 (patch) | |
tree | c062d69b32c93d0e15732fd00848b316d77ebb28 | |
parent | ce536f9c9c76c1c861c12e73383fef17bb68869e (diff) |
Combine tcl documentation instructions together.
-rw-r--r-- | chapter08/tcl.xml | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/chapter08/tcl.xml b/chapter08/tcl.xml index d1aec7f7f..5cf4e0d13 100644 --- a/chapter08/tcl.xml +++ b/chapter08/tcl.xml @@ -50,14 +50,6 @@ excessive, but it is very reassuring, if not essential, to know that the most important tools are working properly.</para> -<!-- <para>Note that the Tcl package used here is a minimal version needed - to run the LFS tests. For the full package, see the - <ulink url='&blfs-book;general/tcl.html'>BLFS Tcl procedures</ulink>.</para>--> - - <para>First, unpack the documentation by issuing the following command:</para> - -<screen><userinput remap="pre">tar -xf ../tcl&tcl-version;-html.tar.gz --strip-components=1</userinput></screen> - <para>Prepare Tcl for compilation:</para> <screen><userinput remap="configure">SRCDIR=$(pwd) @@ -117,11 +109,13 @@ unset SRCDIR</userinput></screen> <screen><userinput remap="install">mv /usr/share/man/man3/{Thread,Tcl_Thread}.3</userinput></screen> - <para>If you downloaded the optional documentation, install it by issuing + <para>Optionally, install the documentation by issuing the following commands:</para> - <screen><userinput remap="install">mkdir -v -p /usr/share/doc/tcl-&tcl-version; -cp -v -r ../html/* /usr/share/doc/tcl-&tcl-version;</userinput></screen> +<screen><userinput remap="install">cd .. +tar -xf ../tcl&tcl-version;-html.tar.gz --strip-components=1 +mkdir -v -p /usr/share/doc/tcl-&tcl-version; +cp -v -r ./html/* /usr/share/doc/tcl-&tcl-version;</userinput></screen> </sect2> |