configure: Log correct test name and use correct filter when testing objective C flags

This commit is contained in:
Diego Biurrun 2016-06-06 19:06:30 +02:00
parent fe7bc1f16a
commit 831005b230
1 changed files with 3 additions and 3 deletions

6
configure vendored
View File

@ -884,15 +884,15 @@ check_cflags(){
} }
test_objcflags(){ test_objcflags(){
log test_cflags "$@" log test_objcflags "$@"
set -- $($cflags_filter "$@") set -- $($objcflags_filter "$@")
check_objcc "$@" <<EOF check_objcc "$@" <<EOF
int x; int x;
EOF EOF
} }
check_objcflags(){ check_objcflags(){
log check_cflags "$@" log check_objcflags "$@"
test_objcflags "$@" && add_objcflags "$@" test_objcflags "$@" && add_objcflags "$@"
} }