Commit b77df637 authored by Måns Rullgård's avatar Måns Rullgård

configure: fix return value from check_header

Originally committed as revision 17695 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4b037567
...@@ -574,7 +574,8 @@ check_header(){ ...@@ -574,7 +574,8 @@ check_header(){
log check_header "$@" log check_header "$@"
header=$1 header=$1
shift shift
check_cpp "$@" <<EOF && enable_safe $header || disable_safe $header disable_safe $header
check_cpp "$@" <<EOF && enable_safe $header
#include <$header> #include <$header>
int x; int x;
EOF 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