Changeset af41791


Ignore:
Timestamp:
08/23/2005 08:18:17 PM (19 years ago)
Author:
Matthew Burgess <matthew@…>
Children:
8152318
Parents:
8f82a9e
Message:

Remove '&&' from the find' command that removes fixed headers as this may fail due to a race condition between find' and `rm' (fixes bug 1621)

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r8f82a9e raf41791  
    120120</listitem>
    121121
     122<listitem><para>August 23rd, 2005 [matt]: <command>find</command> may fail due
     123to a race condition when deleting files.  Remove the &amp;&amp; construct in
     124chapter05/adjusting.xml so that the rest of the commands for removing fixed
     125headers will be executed (fixes bug 1621).</para></listitem>
     126
    122127<listitem><para>August 23rd, 2005 [matt]: Install Udev's documentation relating
    123128to configuring rules (fixes bug 1622)</para></listitem>
  • chapter05/adjusting.xml

    r8f82a9e raf41791  
    6969<!-- && used to ease copy and pasting -->
    7070<screen><userinput>GCC_INCLUDEDIR=`dirname $(gcc -print-libgcc-file-name)`/include &amp;&amp;
    71 find ${GCC_INCLUDEDIR}/* -xtype d -exec rm -rf \{} \; &amp;&amp;
     71find ${GCC_INCLUDEDIR}/* -xtype d -exec rm -rf \{} \;
    7272rm -f `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` &amp;&amp;
    7373unset GCC_INCLUDEDIR</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.