Changeset a7d71e2


Ignore:
Timestamp:
01/18/2006 08:57:04 PM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.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:
d1c3223
Parents:
8d349d4
Message:

Modified the sed command in the Firefox instructions so that it can be run multiple times, also modified the instructions for creating symlinks to the system-wide mozilla plugin directory

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r8d349d4 ra7d71e2  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[randy] - Modified the sed command in the Firefox instructions
     49          so that it can be run multiple times, also modified the instructions
     50          for creating symlinks to the system-wide mozilla plugin
     51          directory.</para>
     52        </listitem>
     53        <listitem>
    4854          <para>[randy] - Added a dependency and updated text to the Xine
    4955          Libraries instructions.</para>
  • xsoft/graphweb/firefox.xml

    r8d349d4 ra7d71e2  
    204204    following commands:</para>
    205205
    206 <screen><userinput>sed -i "s/    enum/&amp; xptinfo_enum_1/" \
     206<screen><userinput>sed -i "s/^    enum$/&amp; xptinfo_enum_1/" \
    207207    xpcom/reflect/xptinfo/public/xptinfo.h &amp;&amp;
    208208make -f client.mk build</userinput></screen>
     
    261261    <title>Command Explanations</title>
    262262
    263     <para><command>sed -i "s/    enum/&amp; xptinfo_enum_1/" ...</command>:
     263    <para><command>sed -i "s/^    enum$/&amp; xptinfo_enum_1/" ...</command>:
    264264    This command is used to fix an anonymous enum in an external/public
    265265    interface header file.</para>
     
    309309    <para>Some packages install Mozilla plugins into the default system-wide
    310310    directory <filename class='directory'>/usr/lib/mozilla/plugins</filename>.
    311     If desired, issue the following commands as the
    312     <systemitem class="username">root</systemitem> user to link any plugins
    313     you may have installed to the <application>Firefox</application> plugin
    314     directory.</para>
     311    If desired, create symbolic links in the <application>Firefox</application>
     312    plugin directory
     313    <filename class='directory'>/usr/lib/firefox-&firefox-version;/plugins</filename>
     314    to the files in the default plugin directory. Alternatively, you can move
     315    or copy the files in the default plugin directory to the
     316    <application>Firefox</application> plugin directory. An example of creating
     317    a symbolic link is shown below. Create the links as the
     318    <systemitem class="username">root</systemitem> user:</para>
     319
     320<screen role="root"><userinput>ln -v -s ../../mozilla/plugins/<replaceable>[plugin.so]</replaceable> \
     321    /usr/lib/firefox-&firefox-version;/plugins</userinput></screen>
     322
     323<!-- Commenting this out as it is replaced with text above saying to
     324     create the symlinks manually.
    315325
    316326<screen role="root"><userinput>if [ -f /usr/lib/mozilla/plugins/* ]; then
     
    321331  done
    322332fi</userinput></screen>
     333
     334-->
    323335
    324336  </sect2>
Note: See TracChangeset for help on using the changeset viewer.