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(){
log test_cflags "$@"
set -- $($cflags_filter "$@")
log test_objcflags "$@"
set -- $($objcflags_filter "$@")
check_objcc "$@" <<EOF
int x;
EOF
}
check_objcflags(){
log check_cflags "$@"
log check_objcflags "$@"
test_objcflags "$@" && add_objcflags "$@"
}