diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-06-06 19:06:30 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-09 20:51:56 +0100 |
commit | 831005b2302cbeb377e3f00fd18c78928bcec185 (patch) | |
tree | 85c3d29f87249fef83c7b73da4c91c13c8d14046 /configure | |
parent | fe7bc1f16abaefe66d8a20f734ca3eb8a4ce4d43 (diff) | |
download | ffmpeg-831005b2302cbeb377e3f00fd18c78928bcec185.tar.gz |
configure: Log correct test name and use correct filter when testing objective C flags
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 "$@" } |