Changeset 3a3b19b


Ignore:
Timestamp:
12/19/2005 02:04:23 AM (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:
de8420b1
Parents:
64868e0
Message:

Modified the sed command in the OpenSSH instructions to better allow for repeated builds

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r64868e0 r3a3b19b  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[randy] - Modified the sed command in the OpenSSH instructions
     49          to better allow for repeated builds.</para>
     50        </listitem>
     51        <listitem>
    4852          <para>[bdubbs] - Updated to nmap-3.95.</para>
    4953        </listitem>
    5054        <listitem>
    51           <para>[bdubbs] - Added sed to bind to prevent invalid
     55          <para>[bdubbs] - Added sed to Bind to prevent invalid
    5256          warnings in the log.</para>
    5357        </listitem>
  • server/major/openssh.xml

    r64868e0 r3a3b19b  
    66
    77  <!ENTITY openssh-download-http "http://sunsite.ualberta.ca/pub/OpenBSD/OpenSSH/portable/openssh-&openssh-version;.tar.gz">
    8   <!ENTITY openssh-download-ftp "ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-&openssh-version;.tar.gz">
    9   <!ENTITY openssh-md5sum "df899194a340c933944b193477c628fa">
    10   <!ENTITY openssh-size "914 KB">
    11   <!ENTITY openssh-buildsize "15.7 MB">
    12   <!ENTITY openssh-time "0.5 SBU (additional 0.5 SBU to run the test suite)">
     8  <!ENTITY openssh-download-ftp  "ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-&openssh-version;.tar.gz">
     9  <!ENTITY openssh-md5sum        "df899194a340c933944b193477c628fa">
     10  <!ENTITY openssh-size          "914 KB">
     11  <!ENTITY openssh-buildsize     "15.7 MB">
     12  <!ENTITY openssh-time          "0.5 SBU (additional 0.5 SBU to run the test suite)">
    1313]>
    1414
     
    107107    the following commands:</para>
    108108
    109 <screen><userinput>./configure --prefix=/usr --sysconfdir=/etc/ssh \
     109<screen><userinput>sed -i "s/lkrb5 -ldes/lkrb5/" configure &amp;&amp;
     110./configure --prefix=/usr --sysconfdir=/etc/ssh \
    110111    --libexecdir=/usr/sbin --with-md5-passwords \
    111     --with-privsep-path=/var/lib/sshd</userinput></screen>
    112 
     112    --with-privsep-path=/var/lib/sshd &amp;&amp;
     113make</userinput></screen>
     114
     115    <!-- Leaving this bunch of stuff for now. The description of all
     116         this is now in the Command Explanatations, however.
    113117    <para>If you use <application>Heimdal</application> as your Kerberos5
    114118    implementation and you linked the <application>Heimdal</application>
    115119    libraries into the <application>OpenSSH</application> build using the
    116     <option>--with-kerberos5</option> parameter, you'll need to modify the
     120    <option>-with-kerberos5</option> parameter, you'll need to modify the
    117121    <filename>Makefile</filename> if you previously linked
    118122    <application>OpenSSL</application> into the
     
    123127    <application>OpenSSL</application>. Use the following command to modify
    124128    the <filename>Makefile</filename>:</para>
    125 
    126 <screen><userinput>sed -i -e "s/lkrb5 -ldes/lkrb5/" Makefile</userinput></screen>
    127 
    128     <para>Continue the build:</para>
    129 
    130 <screen><userinput>make</userinput></screen>
     129    -->
    131130
    132131    <para>If you linked <application>tcp_wrappers</application> into the
     
    148147  <sect2 role="commands">
    149148    <title>Command Explanations</title>
     149
     150    <para><command>sed -i "s/lkrb5 -ldes/lkrb5/" configure</command>:
     151    This command fixes a build crash if you used the
     152    <option>--with-kerberos5</option> parameter and you built the
     153    <application>Heimdal</application> package in accordance with the BLFS
     154    instructions. The command is harmless in all other instances.</para>
    150155
    151156    <para><parameter>--sysconfdir=/etc/ssh</parameter>: This prevents
Note: See TracChangeset for help on using the changeset viewer.