1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

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>
This commit is contained in:
James Almer 2017-03-31 14:32:32 -03:00
commit e5177e8f8d

6
configure vendored
View File

@ -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 "$@"
}