Changeset 9247790


Ignore:
Timestamp:
11/04/2010 04:31:00 PM (13 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
cd42a255
Parents:
d4796f8b
Message:

Modified the attr instructions to support a DESTDIR installation, changed the method of creating a versioned documentation directory, and modified permissions of library files to standards

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rd4796f8b r9247790  
    44-->
    55
    6 <!ENTITY day          "03">                   <!-- Always 2 digits -->
     6<!ENTITY day          "04">                   <!-- Always 2 digits -->
    77<!ENTITY month        "11">                   <!-- Always 2 digits -->
    88<!ENTITY year         "2010">
     
    1010<!ENTITY copyholder   "The BLFS Development Team">
    1111<!ENTITY version      "svn-&year;&month;&day;">
    12 <!ENTITY releasedate  "November &day;rd, &year;">
     12<!ENTITY releasedate  "November &day;th, &year;">
    1313<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1414<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    rd4796f8b r9247790  
    4141
    4242-->
     43
     44    <listitem>
     45      <para>November 4th, 2010</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Modified the attr instructions to support a DESTDIR
     49          installation, changed the method of creating a versioned
     50          documentation directory, and modified permissions of library files
     51          to standards.</para>
     52        </listitem>
     53      </itemizedlist>
     54    </listitem>
    4355
    4456    <listitem>
  • postlfs/security/attr.xml

    rd4796f8b r9247790  
    6868    commands:</para>
    6969
    70 <screen><userinput>./configure --prefix=/usr --libexecdir=/usr/lib &amp;&amp;
     70<screen><userinput>sed -i -e 's|doc/@pkg_name@|&amp;-@pkg_version@|' \
     71       -e 's|@prefix|$(DESTDIR)&amp;|'            \
     72       -e 's|@libexec|$(DESTDIR)&amp;|'           \
     73    include/builddefs.in
     74
     75./configure --prefix=/usr --libexecdir=/usr/lib &amp;&amp;
    7176make</userinput></screen>
    7277
     
    8186
    8287<screen role="root"><userinput>make install install-dev install-lib &amp;&amp;
    83 mv /usr/share/doc/attr /usr/share/doc/attr-&attr-version;</userinput></screen>
     88chmod -v 755 /usr/lib/libattr.{la,so.1.1.0}</userinput></screen>
     89
     90  </sect2>
     91
     92  <sect2 role="commands">
     93    <title>Command Explanations</title>
     94
     95    <para><command>sed ... include/builddefs.in</command>: This command
     96    modifies the documentation directory so that it is a versioned
     97    directory and also adds support for a DESTDIR installation.</para>
     98
     99    <para><command>chmod ...</command>: This command modifies the permissions
     100    of installed library files to standards.</para>
    84101
    85102  </sect2>
     
    94111
    95112      <para>One way to achieve this is to add the user_xattr option to an ext3
    96       filesystem in the /etc/fstab file as shown below.</para>
     113      filesystem in the /etc/fstab file as shown below:</para>
    97114
    98115<screen># file system  mount-point  type   options                 dump  fsck
Note: See TracChangeset for help on using the changeset viewer.