Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-03-31 20:32:32 +0300
committerJames Almer <jamrial@gmail.com>2017-03-31 20:32:32 +0300
commite5177e8f8db009c159e0e3dbaf8c5f8b05258e5b (patch)
tree21a322fdda119455864107b21458033c89e000da /configure
parentf0df60d392d607a4a3e1ba68d0f60ba5fbfa6516 (diff)
parent831005b2302cbeb377e3f00fd18c78928bcec185 (diff)
Merge commit '831005b2302cbeb377e3f00fd18c78928bcec185'
* commit '831005b2302cbeb377e3f00fd18c78928bcec185': configure: Log correct test name and use correct filter when testing objective C flags Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index f3b88b4408..e23b211c20 100755
--- a/configure
+++ b/configure
@@ -1045,15 +1045,15 @@ EOF
}
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 "$@"
}