Changeset c612fc3


Ignore:
Timestamp:
05/16/2014 09:52:06 PM (10 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 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:
a366dc3
Parents:
dc83022
Message:

Typo and format corrections

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

Files:
8 edited

Legend:

Unmodified
Added
Removed
  • general/genutils/shared-mime-info.xml

    rdc83022 rc612fc3  
    9090    <title>Installation of Shared Mime Info</title>
    9191
     92    <note>
     93      <para>
     94        This package does not support parallel build.
     95      </para>
     96    </note>
     97
    9298    <para>
    9399      Install <application>Shared Mime Info</application> by running the
     
    96102
    97103<screen><userinput>./configure --prefix=/usr &amp;&amp;
    98 make</userinput></screen>
     104make -j1</userinput></screen>
    99105
    100106    <para>
  • general/sysutils/udev-extras.xml

    rdc83022 rc612fc3  
    113113   user:</para>
    114114
    115 <screen><userinput>make install</userinput></screen>
     115<screen role="root"><userinput>make install</userinput></screen>
    116116
    117117  </sect2>
  • postlfs/security/haveged.xml

    rdc83022 rc612fc3  
    9898cp -v README /usr/share/doc/haveged-&haveged-version;</userinput></screen>
    9999
     100  </sect2>
     101
     102  <sect2 role="configuration">
     103    <title>Configuring haveged</title>
     104
    100105    <sect3  id="haveged-init">
    101106      <title>Boot Script</title>
  • postlfs/virtualization/qemu.xml

    rdc83022 rc612fc3  
    188188    <command>qemu-system-x86_64</command>:</para>
    189189
    190     <screen><userinput>ln -sv qemu-system-x86_64 /usr/bin/qemu</userinput></screen>
     190    <screen role="root"><userinput>ln -sv qemu-system-x86_64 /usr/bin/qemu</userinput></screen>
    191191    </note>
    192192
  • server/mail/sendmail.xml

    rdc83022 rc612fc3  
    6666    </para>
    6767
     68    <bridgehead renderas="sect4">Recommanded</bridgehead>
     69    <para role="recommanded">
     70      <xref linkend="openssl"/> and
     71      <xref linkend="cyrus-sasl"/>
     72    </para>
     73
    6874    <bridgehead renderas="sect4">Optional</bridgehead>
    6975    <para role="optional">
    70       <xref linkend="openssl"/>,
    71       <xref linkend="cyrus-sasl"/>,
    7276      <xref linkend="procmail"/>,
    7377      <ulink url="http://www.feep.net/nph/">nph</ulink>, and
     
    102106<screen><userinput>cat &gt;&gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"
    103107<literal>APPENDDEF(`confENVDEF',`-DSTARTTLS -DSASL -DLDAPMAP')
    104 APPENDDEF(`confLIBS', `-lssl -lcrypto -lsasl2 -lldap -llberi -ldb')
     108APPENDDEF(`confLIBS', `-lssl -lcrypto -lsasl2 -lldap -llber -ldb')
    105109APPENDDEF(`confINCDIRS', `-I/usr/include/sasl')</literal>
    106110EOF</userinput></screen>
  • server/other/openldap.xml

    rdc83022 rc612fc3  
    155155            --disable-slapd &amp;&amp;
    156156make depend &amp;&amp;
    157 make &amp;&amp;
    158 make install</userinput></screen>
     157make</userinput></screen>
     158
     159    <para>
     160      Then, as the <systemitem class="username">root</systemitem> user:
     161    </para>
     162
     163<screen role="root"><userinput>make install</userinput></screen>
    159164
    160165    </note>
     
    209214
    210215chmod -v 700 /var/lib/openldap                                         &amp;&amp;
    211 chown -v -R ldap:ldap /var/lib/openldap                                &amp;&amp;
     216chown -v -R root:ldap /var/lib/openldap                                &amp;&amp;
    212217chmod -v 640 /etc/openldap/{slapd.{conf,ldif},DB_CONFIG.example}       &amp;&amp;
    213218chown -v root:ldap /etc/openldap/{slapd.{conf,ldif},DB_CONFIG.example} &amp;&amp;
  • x/lib/qt5.xml

    rdc83022 rc612fc3  
    237237
    238238  <para>
    239         This section provides for installing Qt4 almost all of the files in the
     239        This section provides instructions for installing Qt5 in the
    240240        <filename class="directory">/opt</filename> directory.
    241241   </para>
  • x/lib/webkitgtk.xml

    rdc83022 rc612fc3  
    132132
    133133<screen><userinput>sed -i '/parse-param/ a%lex-param {YYLEX_PARAM}' \
    134              Source/ThirdParty/ANGLE/src/compiler/glslang.y</userinput> &amp;&amp;
    135 <userinput>patch -Np1 -i ../webkitgtk-&webkitgtk-version;-fix_librt_linking-1.patch &amp;&amp;
    136 ./configure --prefix=/usr --with-gtk=2.0 --disable-webkit2 &amp;&amp;
     134             Source/ThirdParty/ANGLE/src/compiler/glslang.y &amp;&amp;
     135patch -Np1 -i ../webkitgtk-&webkitgtk-version;-fix_librt_linking-1.patch &amp;&amp;
     136./configure --prefix=/usr --with-gtk=2.0 --disable-webkit2  &amp;&amp;
    137137make</userinput></screen>
    138138
Note: See TracChangeset for help on using the changeset viewer.