Commit 37646485 authored by mru's avatar mru

configure: return result of test from check_asm

This makes it possible to use check_asm in conditionals.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20105 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f52400ae
......@@ -572,7 +572,8 @@ check_asm(){
name="$1"
asm="$2"
shift 2
check_as "$@" <<EOF && enable $name || disable $name
disable $name
check_as "$@" <<EOF && enable $name
void foo(void){ __asm__ volatile($asm); }
EOF
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment