[libav-commits] configure: Log correct test name and use correct filter when testing objective C flags
Diego Biurrun
git at libav.org
Wed Nov 9 21:01:32 CET 2016
Module: libav
Branch: master
Commit: 831005b2302cbeb377e3f00fd18c78928bcec185
Author: Diego Biurrun <diego at biurrun.de>
Committer: Diego Biurrun <diego at biurrun.de>
Date: Mon Jun 6 19:06:30 2016 +0200
configure: Log correct test name and use correct filter when testing objective C flags
---
configure | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure b/configure
index 93edc99..4cfa066 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 "$@"
}
More information about the libav-commits
mailing list