diff options
author | Diego Biurrun <diego@biurrun.de> | 2018-03-09 17:28:51 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2018-03-26 18:52:04 +0200 |
commit | b9ea301e02472d0982b0fa0f80294bd95885bde8 (patch) | |
tree | 535a6817ff9fe6aba072d19bc328067d5025eaa2 | |
parent | 5292e97c42b05db7ad4e51c1ea756b12fdf721ff (diff) | |
download | ffmpeg-b9ea301e02472d0982b0fa0f80294bd95885bde8.tar.gz |
configure: Use a more sensible suffix for x86 assembly tempfiles
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -846,10 +846,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 "$@" -o $TMPO $TMPS + test_cmd $x86asmexe $X86ASMFLAGS "$@" -o $TMPO $TMPASM } ld_o(){ |