[FFmpeg-cvslog] configure: fix passing Objective-C flags
Marvin Scholz
git at videolan.org
Mon Mar 17 05:09:34 EET 2025
ffmpeg | branch: master | Marvin Scholz <epirat07 at gmail.com> | Thu Sep 26 01:41:15 2024 +0200| [163e5fd84df0c0246755acf53daffeaee97ad056] | committer: Zhao Zhili
configure: fix passing Objective-C flags
Passing Objective-C flags from configure to the Makefiles was broken, as
configure incorrectly used the OBJCCFLAGS instead of OBJCFLAGS variable
which was then later overwritten in the common.mak:
OBJCCFLAGS = $(CPPFLAGS) $(CFLAGS) $(OBJCFLAGS)
The fix for this is simple, analogous to how it is handled for CFLAGS,
use OBJCFLAGS here so that the flags are properly included in the
aforementioned OBJCCFLAGS definition.
Signed-off-by: Zhao Zhili <zhilizhao at tencent.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=163e5fd84df0c0246755acf53daffeaee97ad056
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 750c99e3b9..87d03897fa 100755
--- a/configure
+++ b/configure
@@ -8141,7 +8141,7 @@ LN_S=$ln_s
CPPFLAGS=$CPPFLAGS
CFLAGS=$CFLAGS
CXXFLAGS=$CXXFLAGS
-OBJCCFLAGS=$OBJCFLAGS
+OBJCFLAGS=$OBJCFLAGS
ASFLAGS=$ASFLAGS
NVCCFLAGS=$nvccflags
AS_C=$AS_C
More information about the ffmpeg-cvslog
mailing list