mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 14:47:17 +08:00
Fix sed for 32bit in lame
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19877 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
e0581227d0
commit
0de59f5d9d
@ -43,7 +43,11 @@
|
||||
-->
|
||||
<listitem>
|
||||
<para>February 25th, 2018</para>
|
||||
<itemizedlist>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>[thomas] - Fix sed for 32bit in lame. Fixes
|
||||
<ulink url="&blfs-ticket-root;10415">#10415</ulink>.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[ken] - In mutt, reinstate the commands to preserve
|
||||
manual.txt.</para>
|
||||
|
@ -95,7 +95,7 @@
|
||||
</para>
|
||||
|
||||
<screen><userinput>case $(uname -m) in
|
||||
i?86) sed -i -e '/xmmintrin\.h/d' configure ;;
|
||||
i?86) sed -i -e 's/<xmmintrin.h/&.nouse/' configure ;;
|
||||
esac</userinput></screen>
|
||||
|
||||
<para>
|
||||
@ -122,7 +122,7 @@ make</userinput></screen>
|
||||
<title>Command Explanations</title>
|
||||
|
||||
<para>
|
||||
<command>sed -i -e '/xmmintrin\.h/d' configure</command> : with
|
||||
<command>sed -i -e 's/<xmmintrin.h/&.nouse/' configure</command> : with
|
||||
gcc-4.9.0 and above, the compiler issues an error on 32-bit machines,
|
||||
while compiling <filename>xmm_quantize_sub.c</filename>. The error
|
||||
message is: <literal>error: inlining failed in call to always_inline
|
||||
|
Loading…
Reference in New Issue
Block a user