Commit 39ee913a authored by mru's avatar mru

configure: fix return value from check_header

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17695 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6247d4a8
......@@ -574,7 +574,8 @@ check_header(){
log check_header "$@"
header=$1
shift
check_cpp "$@" <<EOF && enable_safe $header || disable_safe $header
disable_safe $header
check_cpp "$@" <<EOF && enable_safe $header
#include <$header>
int x;
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