Changeset 9ad2f59


Ignore:
Timestamp:
03/30/2010 10:19:00 PM (14 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
0be83d93
Parents:
82799f3
Message:

Added commands and explanations to rebuild the /usr/share/info/dir file in the MySQL instructions

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r82799f3 r9ad2f59  
    4747        <listitem>
    4848          <para>[randy] - Added commands and explanations to rebuild the
     49          /usr/share/info/dir file in the MySQL instructions.</para>
     50        </listitem>
     51        <listitem>
     52          <para>[randy] - Added commands and explanations to rebuild the
    4953          /usr/share/info/dir file in the GPerf instructions.</para>
    5054        </listitem>
  • server/databases/mysql.xml

    r82799f3 r9ad2f59  
    141141<screen role="root"><userinput>make benchdir_root=/tmp/mysql-bench install &amp;&amp;
    142142rm -rf /tmp/mysql &amp;&amp;
    143 cd /usr/lib &amp;&amp;
    144 ln -v -sf mysql/libmysqlclient{,_r}.so* .</userinput></screen>
     143pushd /usr/lib &amp;&amp;
     144ln -v -sf mysql/libmysqlclient{,_r}.so* . &amp;&amp;
     145popd &amp;&amp;
     146 
     147pushd /usr/share/info &amp;&amp;
     148rm -v dir &amp;&amp;
     149for FILENAME in *; do
     150    install-info $FILENAME dir 2>/dev/null
     151done &amp;&amp;
     152popd</userinput></screen>
    145153
    146154    <tip>
     
    207215    <para><option>--with-libwrap</option>: This switch adds tcpwrappers
    208216    support to <application>MySQL</application>.</para>
     217
     218    <para><command>pushd ... popd</command>: This set of commands rebuilds the
     219    <filename>/usr/share/info/dir</filename> file as the installation failed
     220    to do so.</para>
    209221
    210222  </sect2>
Note: See TracChangeset for help on using the changeset viewer.