diff options
author | James Almer <jamrial@gmail.com> | 2018-03-29 21:06:25 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-03-29 21:06:25 -0300 |
commit | 3bbec8e7c20b0f8b7b85a173bd006a76bb0c2601 (patch) | |
tree | 6d385dec99f74e87e33d867a932491be10d03408 | |
parent | 44df2e858889ab8e41d6a9f403433d7adc304bbe (diff) | |
parent | b9ea301e02472d0982b0fa0f80294bd95885bde8 (diff) | |
download | ffmpeg-3bbec8e7c20b0f8b7b85a173bd006a76bb0c2601.tar.gz |
Merge commit 'b9ea301e02472d0982b0fa0f80294bd95885bde8'
* commit 'b9ea301e02472d0982b0fa0f80294bd95885bde8':
configure: Use a more sensible suffix for x86 assembly tempfiles
Merged-by: James Almer <jamrial@gmail.com>
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1029,10 +1029,10 @@ check_insn(){ test_x86asm(){ log test_x86asm "$@" - echo "$1" > $TMPS - log_file $TMPS + echo "$1" > $TMPASM + log_file $TMPASM shift 1 - test_cmd $x86asmexe $X86ASMFLAGS -Werror "$@" -o $TMPO $TMPS + test_cmd $x86asmexe $X86ASMFLAGS -Werror "$@" -o $TMPO $TMPASM } ld_o(){ |