summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-06-06 19:06:30 +0200
committerDiego Biurrun <diego@biurrun.de>2016-11-09 20:51:56 +0100
commit831005b2302cbeb377e3f00fd18c78928bcec185 (patch)
tree85c3d29f87249fef83c7b73da4c91c13c8d14046 /configure
parentfe7bc1f16abaefe66d8a20f734ca3eb8a4ce4d43 (diff)
configure: Log correct test name and use correct filter when testing objective C flags
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 93edc998dc..4cfa0662d0 100755
--- a/configure
+++ b/configure
@@ -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 "$@"
}