Changeset a52e6d76


Ignore:
Timestamp:
06/09/2011 12:47:22 PM (13 years ago)
Author:
Wayne Blaszczyk <wblaszcz@…>
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:
f4144b15
Parents:
43bd706
Message:

ticket 3130

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r43bd706 ra52e6d76  
    4141
    4242-->
     43    <listitem>
     44      <para>June 9th, 2011</para>
     45      <itemizedlist>
     46        <listitem>
     47          <para>[wblaszcz] - Added instructions for creating missing test
     48          scripts for attr-2.4.44 and acl-2.2.49. (ticket
     49          <ulink url="&blfs-ticket-root;3130">#3130</ulink>).</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
    4354    <listitem>
    4455      <para>June 9th, 2011</para>
  • postlfs/security/acl.xml

    r43bd706 ra52e6d76  
    7575    commands:</para>
    7676
    77 <screen><userinput>sed -i -e 's|/@pkg_name@|&amp;-@pkg_version@|' \
     77<screen><userinput>cat &gt; test/sort-getfacl-output &lt;&lt; "EOF" &amp;&amp;
     78#! /usr/bin/perl -w
     79
     80undef $/;
     81print join("\n\n", sort split(/\n\n/, &lt;&gt;)), "\n\n";
     82EOF
     83chmod 755 test/sort-getfacl-output &amp;&amp;
     84sed -i -e 's|/@pkg_name@|&amp;-@pkg_version@|' \
    7885       -e 's|@prefix|$(DESTDIR)&amp;|'         \
    7986       -e 's|@libexec|$(DESTDIR)&amp;|'        \
     
    8794    <application>Coreutils</application> is re-installed after
    8895    <application>acl</application> is installed so that the extra acl bit
    89     displays correctly on a <command>ls</command> command. Some failures will
    90     occur due to a missing script called
    91     <filename>sort-getfattr-output</filename> which is not part of the
    92     tarball.</para>
     96    displays correctly on a <command>ls</command> command.</para>
    9397
    9498    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     
    110114  <sect2 role="commands">
    111115    <title>Command Explanations</title>
     116
     117    <para><command>cat &gt; test/sort-getfacl-output ... EOF</command>: This
     118    command creates a missing test script.</para>
    112119
    113120    <para><command>sed -i ... include/builddefs.in</command>: This command
  • postlfs/security/attr.xml

    r43bd706 ra52e6d76  
    7070    commands:</para>
    7171
    72 <screen><userinput>sed -i -e 's|/@pkg_name@|&amp;-@pkg_version@|' \
     72<screen><userinput>cat &gt; test/sort-getfattr-output &lt;&lt; "EOF" &amp;&amp;
     73#! /usr/bin/perl -w
     74
     75undef $/;
     76print join("\n\n", sort split(/\n\n/, &lt;&gt;)), "\n\n";
     77EOF
     78chmod 755 test/sort-getfattr-output &amp;&amp;
     79sed -i -e 's|/@pkg_name@|&amp;-@pkg_version@|' \
    7380       -e 's|@prefix|$(DESTDIR)&amp;|'         \
    7481       -e 's|@libexec|$(DESTDIR)&amp;|'        \
     
    8289    <command>make tests root-tests ext-tests</command>.  For meaningful results,
    8390    the tests need to be carried out on a file system that supports extended
    84     attributes. Some failures will occur due to a missing script called
    85     <filename>sort-getfattr-output</filename> which is not part of the
    86     tarball.</para>
     91    attributes.</para>
    8792
    8893    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     
    95100  <sect2 role="commands">
    96101    <title>Command Explanations</title>
     102
     103    <para><command>cat &gt; test/sort-getfattr-output ... EOF</command>: This
     104    command creates a missing test script.</para>
    97105
    98106    <para><command>sed ... include/builddefs.in</command>: This command
Note: See TracChangeset for help on using the changeset viewer.