Changeset ba9a546 for chapter06


Ignore:
Timestamp:
07/06/2014 06:20:40 PM (10 years ago)
Author:
Krejzi <krejzi@…>
Branches:
7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
Children:
63e8d0a
Parents:
346eaef1
Message:

Merge lfs svn, dbus 1.8.6 update, fix md5sums repored by spiky.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10625 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter06
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter06/binutils.xml

    r346eaef1 rba9a546  
    7878    <para>Prepare Binutils for compilation:</para>
    7979
    80 <screen><userinput remap="configure">../binutils-&binutils-version;/configure --prefix=/usr  \
    81                           --enable-shared \
    82                           --disable-werror</userinput></screen>
     80<screen><userinput remap="configure">../binutils-&binutils-version;/configure --prefix=/usr   \
     81                           --enable-shared \
     82                           --disable-werror</userinput></screen>
    8383
    8484    <para>Compile the package:</para>
  • chapter06/iproute2.xml

    r346eaef1 rba9a546  
    6161    <para>Compile the package:</para>
    6262
    63 <screen><userinput remap="make">make DESTDIR=</userinput></screen>
    64 
    65     <variablelist>
    66       <title>The meaning of the make option:</title>
    67 
    68       <varlistentry>
    69         <term><parameter>DESTDIR=</parameter></term>
    70         <listitem>
    71           <para>This ensures that the IPRoute2 binaries will install into
    72           the correct directory. By default, <parameter>DESTDIR</parameter> is
    73           set to <filename class="directory">/usr</filename>.</para>
    74         </listitem>
    75       </varlistentry>
    76 
    77     </variablelist>
     63<screen><userinput remap="make">make</userinput></screen>
    7864
    7965    <para>This package comes with a test suite, but due to assumptions it makes,
     
    8874    <para>Install the package:</para>
    8975
    90 <screen><userinput remap="install">make DESTDIR=              \
    91      MANDIR=/usr/share/man \
    92      DOCDIR=/usr/share/doc/iproute2-&iproute2-version; install</userinput></screen>
     76<screen><userinput remap="install">make DOCDIR=/usr/share/doc/iproute2-&iproute2-version; install</userinput></screen>
    9377
    9478  </sect2>
  • chapter06/vim.xml

    r346eaef1 rba9a546  
    8484    <para>Install the package:</para>
    8585
    86 <screen><userinput remap="install">make install</userinput></screen>
     86<screen><userinput remap="install">make HELPSUBLOC=/usr/share/doc/vim-&vim-version; install</userinput></screen>
     87
     88    <variablelist>
     89      <title>The meaning of the make option:</title>
     90
     91      <varlistentry>
     92        <term><parameter>HELPSUBLOC=/usr/share/doc/vim-&vim-version;</parameter></term>
     93        <listitem>
     94          <para>Tells Vim to install its documentation into
     95          <filename class="directory">/usr/share/doc/vim-&vim-version;</filename>
     96          instead of
     97          <filename class="directory">/usr/share/&vim-docdir;/doc</filename>,
     98          for better consistency with the documentation location for other
     99          packages.</para>
     100        </listitem>
     101      </varlistentry>
     102
     103    </variablelist>
    87104
    88105    <para>Many users are used to using <command>vi</command> instead of
     
    96113    ln -sv vim.1 $(dirname $L)/vi.1
    97114done</userinput></screen>
    98 
    99     <para>By default, Vim's documentation is installed in <filename
    100     class="directory">/usr/share/vim</filename>. The following symlink
    101     allows the documentation to be accessed via <filename
    102     class="directory">/usr/share/doc/vim-&vim-version;</filename>, making
    103     it consistent with the location of documentation for other packages:</para>
    104 
    105 <screen><userinput remap="install">ln -sv ../&vim-docdir;/doc /usr/share/doc/vim-&vim-version;</userinput></screen>
    106115
    107116    <para>If an X Window System is going to be installed on the LFS
Note: See TracChangeset for help on using the changeset viewer.