Changeset 559ee8a


Ignore:
Timestamp:
04/05/2018 08:13:10 PM (6 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
e8e0cc12
Parents:
db1b990
Message:

Make make-ca work with openssl-1.1.0h.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rdb1b990 r559ee8a  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "04">                   <!-- Always 2 digits -->
     3<!ENTITY day          "05">                   <!-- Always 2 digits -->
    44<!ENTITY month        "04">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2018">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "April 4th, &year;">
     9<!ENTITY releasedate  "April 5th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    rdb1b990 r559ee8a  
    4343-->
    4444   <listitem>
     45      <para>April 5, 2018</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[ken] - Work around missing quotes in c_rehash from
     49          openssl-1.1.0h. Fixes
     50          <ulink url="&blfs-ticket-root;10626">#10626</ulink>.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55   <listitem>
    4556      <para>April 4, 2018</para>
    4657      <itemizedlist>
  • postlfs/security/make-ca.xml

    rdb1b990 r559ee8a  
    152152    </note>
    153153
    154 <screen role="root"><userinput>/usr/sbin/make-ca -g</userinput></screen>
     154<screen role="root"><userinput>
     155sed -e 's%= /etc/ssl;%= "/etc/ssl";%' \
     156    -e 's%= /usr;%= "/usr";%'         \
     157    -i /usr/bin/c_rehash              &amp;&amp;
     158/usr/sbin/make-ca -g</userinput></screen>
     159
     160    <para>The <command>sed</command> command works around missing quotes in
     161    <command>c_rehash</command> from openssl-1.1.0h and can be safely rerun
     162    (the " inserted the first time will prevent matches on subsequent runs).</para>
    155163
    156164    <para>You should periodically update the store with the above command
Note: See TracChangeset for help on using the changeset viewer.