Skip to content
Snippets Groups Projects
Commit 8a6e7a67 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

configure: Use check_cpp in CPP flags tests

parent 831005b2
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment