Changeset 40d6bab


Ignore:
Timestamp:
07/27/2005 08:49:55 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
b1d305ed
Parents:
4ea5113
Message:

Fixed typos in various Chapter 12 package instructions

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4806 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
general/prog
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • general/prog/gcc3.xml

    r4ea5113 r40d6bab  
    164164      <segtitle>Installed Programs</segtitle>
    165165      <segtitle>Installed Libraries</segtitle>
    166       <segtitle>Installed Directories</segtitle>
     166      <segtitle>Installed Directory</segtitle>
    167167
    168168      <seglistitem>
     
    179179    <para>The GCC-&gcc3-version; package contains the
    180180    <command>gcc</command>-&gcc3-version; <application>C</application> and
    181     <application>C++</application> compilers and GCC-&gcc3-version;
    182     <filename>libstdc++.so</filename> that is required by some commercial and
    183     pre-compiled packages.</para>
     181    <application>C++</application> compilers and the GCC-&gcc3-version;
     182    <filename>libstdc++.so</filename> library that is required by some
     183    commercial and pre-compiled packages.</para>
    184184
    185185  </sect2>
  • general/prog/guile.xml

    r4ea5113 r40d6bab  
    6666<screen><userinput>./configure --prefix=/usr &amp;&amp;
    6767make</userinput></screen>
     68
     69    <para>To test the results, issue: <command>make check</command>.</para>
    6870
    6971    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
  • general/prog/jdk.xml

    r4ea5113 r40d6bab  
    231231    </warning>
    232232
    233     <para>Additionally, if you would like to make in parallel, add the
    234     following:</para>
     233    <para>Additionally, if you would like to <command>make</command> in
     234    parallel, add the following:</para>
    235235
    236236<screen><userinput>export HOTSPOT_BUILD_JOBS=<replaceable>[3]</replaceable></userinput></screen>
     
    253253ln -sf motif21/libmawt.so  /opt/jdk/jdk-&jdk-src-version;/jre/lib/i386/</userinput></screen>
    254254
    255     <para>Restore the environment using the following commands:</para>
     255    <para>Restore the unprivileged user's environment using the following
     256    commands:</para>
    256257
    257258<screen><userinput>unset VERSION &amp;&amp;
     
    272273    <title>Command Explanations</title>
    273274
    274     <para><command>export ALT_BOOTDIR="$JAVA_HOME"</command>: This var sets
     275    <para><command>export ALT_BOOTDIR="$JAVA_HOME"</command>: This variable sets
    275276    the location of the bootstrap <application>JDK</application>.</para>
    276277
     
    296297
    297298    <para><command>unset CLASSPATH</command>: This clears the
    298     <envar>CLASSPATH</envar> variable as per the recommendations in the build
     299    <envar>CLASSPATH</envar> variable as recommended by the build
    299300    instructions.</para>
    300301
     
    369370EOF</userinput></screen>
    370371
    371     <para>The <application>Java</application> plugin is loacated in
     372    <para>The <application>Java</application> plugin is located in
    372373    <filename class="directory">$JAVA_HOME/jre/plugin/i?86/ns7/</filename>.
    373     Make a symbolic link to the file in that directory from your browser
     374    Make a symbolic link to the file in that directory from your browser(s)
    374375    plugins directory.</para>
    375376
    376     <note>
     377    <important>
    377378      <para>The plugin must be a symlink for it to work. If not, the browsers
    378       just crash when you attempt to load a <application>Java</application>
     379      will crash when you attempt to load a <application>Java</application>
    379380      application.</para>
    380     </note>
     381    </important>
    381382
    382383    </sect3>
  • general/prog/python.xml

    r4ea5113 r40d6bab  
    9393    <note>
    9494      <para>There is no documentation installed using the instructions above.
    95       However, There are Latex sources included with the distribution. See the
     95      However, There are LaTeX sources included with the distribution. See the
    9696      <filename>Doc/README</filename> file in the source distribution for
    97       instructions to format the LaTex sources. Alternatively, you can download
     97      instructions to format the LaTeX sources. Alternatively, you can download
    9898      preformatted documentation from
    9999      <ulink url="http://www.python.org/doc/current/download.html"/>.</para>
  • general/prog/ruby.xml

    r4ea5113 r40d6bab  
    6161    <para><xref linkend="openssl"/>,
    6262    <xref linkend="tk"/>,
    63     <xref linkend="db"/>,
     63    <xref linkend="db"/> and
    6464    <xref linkend="gdbm"/></para>
    6565
     
    7373
    7474<screen><userinput>./configure --prefix=/usr --enable-shared \
    75 --enable-pthread --enable-install-doc &amp;&amp;
     75    --enable-pthread --enable-install-doc &amp;&amp;
    7676make</userinput></screen>
     77
     78    <para>To test the results, issue: <command>make test</command>.</para>
    7779
    7880    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     
    174176
    175177</sect1>
    176 
  • general/prog/tcl.xml

    r4ea5113 r40d6bab  
    123123
    124124    <para><command>sed -i ...</command>: The <application>Tcl</application>
    125     package assumes that the source that is used to build
     125    package assumes that the source used to build
    126126    <application>Tcl</application> is always kept around for compiling packages
    127127    that depend on <application>Tcl</application>. These <command>sed</command>s
    128     remove the reference to the build directory and replace them by saner system
    129     wide locations.</para>
     128    remove the reference to the build directory and replace them by saner
     129    system-wide locations.</para>
    130130
    131131    <para><command>install ...</command>: These commands install the internal
  • general/prog/tk.xml

    r4ea5113 r40d6bab  
    121121
    122122    <para><command>sed -i ...</command>: The <application>Tk</application> package
    123     assumes that the source that is used to build <application>Tk</application> is
     123    assumes that the source used to build <application>Tk</application> is
    124124    always kept around for compiling packages that depend on
    125     <application>Tk</application>. These <command>sed</command>'s remove the
    126     reference to the build directory and replace them by saner system wide
     125    <application>Tk</application>. These <command>sed</command>s remove the
     126    reference to the build directory and replace them by saner system-wide
    127127    locations.</para>
    128128
     
    160160          <para> is a symlink to the <command>wish8.4</command> program.</para>
    161161          <indexterm zone="tk wish">
    162             <primary sortas="b-wish">wish</primary>
     162            <primary sortas="g-wish">wish</primary>
    163163          </indexterm>
    164164        </listitem>
Note: See TracChangeset for help on using the changeset viewer.