Author: matthew Date: 2005-09-02 16:01:00 -0600 (Fri, 02 Sep 2005) New Revision: 6800
Modified: branches/gcc4/BOOK/chapter01/changelog.xml branches/gcc4/BOOK/chapter06/util-linux.xml Log: Correct the util-linux segfault fix Modified: branches/gcc4/BOOK/chapter01/changelog.xml =================================================================== --- branches/gcc4/BOOK/chapter01/changelog.xml 2005-09-02 21:48:07 UTC (rev 6799) +++ branches/gcc4/BOOK/chapter01/changelog.xml 2005-09-02 22:01:00 UTC (rev 6800) @@ -119,6 +119,11 @@ </itemizedlist> </listitem> +<listitem><para>September 2, 2005 [matt]: The optimization flag for util-linux +comes from <filename>configure</filename> rather than +<filename>MCONFIG</filename>, so adjust the <command>sed</command> in order for +the sefgault fix to actually work.</para></listitem> + <listitem><para>September 2, 2005 [matt]: Avoid the potential race condition when invoking <command>find</command> to remove GCC's fixed headers.</para> </listitem> Modified: branches/gcc4/BOOK/chapter06/util-linux.xml =================================================================== --- branches/gcc4/BOOK/chapter06/util-linux.xml 2005-09-02 21:48:07 UTC (rev 6799) +++ branches/gcc4/BOOK/chapter06/util-linux.xml 2005-09-02 22:01:00 UTC (rev 6800) @@ -58,7 +58,7 @@ <command>sed</command> works around the problem by using the less aggressive <option>-O</option> optimization level instead:</para> -<screen><userinput>sed -i 's/-O2/-O/' MCONFIG</userinput></screen> +<screen><userinput>sed -i 's/-O2/-O/' configure</userinput></screen> <para>Prepare Util-linux for compilation:</para> -- http://linuxfromscratch.org/mailman/listinfo/lfs-book FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
