Changeset 6d8b45a3 for general


Ignore:
Timestamp:
12/25/2018 02:35:46 AM (6 years ago)
Author:
DJ Lucas <dj@…>
Branches:
elogind
Children:
b98dbfd
Parents:
3757ae7
Message:

Merge to HEAD 20872.

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

Location:
general
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/libuv.xml

    r3757ae7 r6d8b45a3  
    9595      commands:
    9696    </para>
     97<!--
     98Don't use cmake here to avoid circular dependency
    9799
    98100<screen><userinput>sed -i "/TARGETS uv_a ARCHIVE/d" CMakeLists.txt &amp;&amp;
     
    103105cmake -DCMAKE_INSTALL_PREFIX=/usr .. &amp;&amp;
    104106make </userinput></screen>
     107-->
    105108
     109<screen><userinput>sh autogen.sh                              &amp;&amp;
     110./configure --prefix=/usr --disable-static &amp;&amp;
     111make </userinput></screen>
     112<!--
    106113    <para>
    107114      If you want to run the tests, add -DBUILD_TESTING=true to
    108115      the cmake line above and after building run:
    109116      <command>make test</command>.
     117    </para>
     118-->
     119    <para>
     120      If you want to run the tests, run: <command>make check</command>.
    110121    </para>
    111122
     
    118129  </sect2>
    119130
    120 
     131<!--
    121132  <sect2 role="commands">
    122133    <title>Command Explanations</title>
     
    128139   
    129140  </sect2>
    130 
     141-->
    131142  <sect2 role="content">
    132143    <title>Contents</title>
  • general/genlib/qca.xml

    r3757ae7 r6d8b45a3  
    117117      -DCMAKE_BUILD_TYPE=Release                                 \
    118118      -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man                  \
    119       -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0             \
     119      <!--      -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0             \
    120120      -DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so       \
    121       -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \
     121      -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \ -->
    122122      ..                                                         &amp;&amp;
    123123
  • general/prog/ojdk-conf.xml

    r3757ae7 r6d8b45a3  
    109109
    110110<screen role="root"><userinput>/usr/sbin/make-ca -g --force &amp;&amp;
    111 ln -sfv /etc/ssl/java/cacerts /opt/jdk/lib/security/cacerts</userinput></screen>
     111ln -sfv /etc/pki/tls/java/cacerts /opt/jdk/lib/security/cacerts</userinput></screen>
    112112
    113113    <para>
  • general/sysutils/pciutils.xml

    r3757ae7 r6d8b45a3  
    148148    </para>
    149149
    150     <para revision="sysv">
    151       You may wish to add an entry to
    152       <systemitem class="username">root</systemitem>'s (or any other user who has
    153       write privilege to <filename class="directory">/usr/share/hwdata</filename>)
    154       crontab to automatically update the <filename>pci.ids</filename> file
    155       periodically.
    156     </para>
    157 
    158     <para revision="systemd">
     150    <para>
    159151      You should update the <filename>/usr/share/hwdata/pci.ids</filename> file
    160       periodically. Execute the following commands, as the
    161       <systemitem class="username">root</systemitem> user, to create a systemd
    162       timer to update it weekly on Sundays at 2:30 A.M. (local time):
    163     </para>
     152      periodically. <phrase revision="sysv">If you've installed
     153      <xref linkend="fcron"/> and completed the section on periodic jobs,
     154      execute</phrase><phrase revision="systemd">Execute</phrase> the following
     155      commands, as the  <systemitem class="username">root</systemitem> user,
     156      to create a <phrase revision="sysv">weekly cron job:</phrase>
     157      <phrase revision="systemd">systemd timer to update it weekly on Sundays
     158      at 2:30 A.M. (local time):</phrase>
     159    </para>
     160
     161<screen role="root" revision="sysv"><userinput>cat &gt; /etc/cron.weekly/update-pciids.sh &lt;&lt; "EOF" &amp;&amp;
     162<literal>#!/bin/bash
     163/usr/sbin/update-pciids</literal>
     164EOF
     165chmod 754 /etc/cron.weekly/update-pciids</userinput></screen>
    164166
    165167<screen role="root" revision="systemd"><userinput>cat &gt; /lib/systemd/system/update-pciids.service &lt;&lt; "EOF" &amp;&amp;
  • general/sysutils/usbutils.xml

    r3757ae7 r6d8b45a3  
    153153<screen role="root" revision="sysv"><userinput>wget http://www.linux-usb.org/usb.ids -O /usr/share/hwdata/usb.ids</userinput></screen>
    154154
    155     <para revision="sysv">
    156       You may wish to add an entry to
    157       <systemitem class="username">root</systemitem>'s (or any other user who has
    158       write privilege to <filename class="directory">/usr/share/hwdata</filename>)
    159       crontab to automatically update the <filename>usb.ids</filename> file
    160       periodically.
    161     </para>
    162 
    163     <para revision="systemd">
     155    <para>
    164156      You should update the <filename>/usr/share/hwdata/usb.ids</filename> file
    165       periodically. Execute the following commands, as the
    166       <systemitem class="username">root</systemitem> user, to create a systemd
    167       timer to update it weekly on Sundays at 3:00 A.M. (local time):
    168     </para>
     157      periodically. <phrase revision="sysv">If you've installed
     158      <xref linkend="fcron"/> and completed the section on periodic jobs,
     159      execute</phrase><phrase revision="systemd">Execute</phrase> the following       commands, as the  <systemitem class="username">root</systemitem> user,
     160      to create a <phrase revision="sysv">weekly cron job:</phrase>
     161      <phrase revision="systemd">systemd timer to update it weekly on Sundays
     162      at 2:30 A.M. (local time):</phrase>
     163    </para>
     164
     165<screen role="root" revision="sysv"><userinput>cat &gt; /etc/cron.weekly/update-
     166usbids.sh &lt;&lt; "EOF" &amp;&amp;
     167<literal>#!/bin/bash
     168/usr/bin/wget http://www.linux-usb.org/usb.ids -O /usr/share/hwdata/usb.ids</literal>
     169EOF
     170chmod 754 /etc/cron.weekly/update-usbids</userinput></screen>
    169171
    170172<screen role="root" revision="systemd"><userinput>cat &gt; /lib/systemd/system/update-usbids.service &lt;&lt; "EOF" &amp;&amp;
Note: See TracChangeset for help on using the changeset viewer.