diff --git a/introduction/welcome/changelog.xml b/introduction/welcome/changelog.xml index d91a6ea0fd..d8b5b368d3 100644 --- a/introduction/welcome/changelog.xml +++ b/introduction/welcome/changelog.xml @@ -43,7 +43,11 @@ --> February 25th, 2018 - + + + [thomas] - Fix sed for 32bit in lame. Fixes + #10415. + [ken] - In mutt, reinstate the commands to preserve manual.txt. diff --git a/multimedia/audioutils/lame.xml b/multimedia/audioutils/lame.xml index 0ad82a22fc..3aecf0585d 100644 --- a/multimedia/audioutils/lame.xml +++ b/multimedia/audioutils/lame.xml @@ -95,7 +95,7 @@ case $(uname -m) in - i?86) sed -i -e '/xmmintrin\.h/d' configure ;; + i?86) sed -i -e 's/<xmmintrin.h/&.nouse/' configure ;; esac @@ -122,7 +122,7 @@ make Command Explanations - sed -i -e '/xmmintrin\.h/d' configure : with + sed -i -e 's/<xmmintrin.h/&.nouse/' configure : with gcc-4.9.0 and above, the compiler issues an error on 32-bit machines, while compiling xmm_quantize_sub.c. The error message is: error: inlining failed in call to always_inline