Re: [FFmpeg-devel] [PATCH] configure: fix assignment of assembler specific flags

2017-06-23 Thread James Almer
On 6/23/2017 5:31 PM, Michael Niedermayer wrote: > On Fri, Jun 23, 2017 at 12:25:00PM -0300, James Almer wrote: >> If the first assembler to be probed is an old nasm build, X86ASM_DEPFLAGS >> will be set and remain so after yasm is ultimately used as fallback. >> This results in yasm being called w

Re: [FFmpeg-devel] [PATCH] configure: fix assignment of assembler specific flags

2017-06-23 Thread Michael Niedermayer
On Fri, Jun 23, 2017 at 12:25:00PM -0300, James Almer wrote: > If the first assembler to be probed is an old nasm build, X86ASM_DEPFLAGS > will be set and remain so after yasm is ultimately used as fallback. > This results in yasm being called with said nasm specific flags and failing > during actu

[FFmpeg-devel] [PATCH] configure: fix assignment of assembler specific flags

2017-06-23 Thread James Almer
If the first assembler to be probed is an old nasm build, X86ASM_DEPFLAGS will be set and remain so after yasm is ultimately used as fallback. This results in yasm being called with said nasm specific flags and failing during actual object assembly but not with configure sanity checks. Regression