diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-08-08 20:27:43 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-09 20:51:56 +0100 |
commit | 8a6e7a67cb2943f552569801539829a304971302 (patch) | |
tree | e6cf8ea79badcafa8f096a1afb1a96dd77208b75 /configure | |
parent | 831005b2302cbeb377e3f00fd18c78928bcec185 (diff) | |
download | ffmpeg-8a6e7a67cb2943f552569801539829a304971302.tar.gz |
configure: Use check_cpp in CPP flags tests
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -865,7 +865,7 @@ check_code(){ check_cppflags(){ log check_cppflags "$@" - check_cc "$@" <<EOF && append CPPFLAGS "$@" + check_cpp "$@" <<EOF && append CPPFLAGS "$@" int x; EOF } @@ -1135,7 +1135,7 @@ check_host_cpp(){ check_host_cppflags(){ log check_host_cppflags "$@" - check_host_cc "$@" <<EOF && append host_cppflags "$@" + check_host_cpp "$@" <<EOF && append host_cppflags "$@" int x; EOF } |