From d73709d8ee01b5e39f6f6ca85801c3c28c18414d Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 6 May 2021 09:48:31 +0000 Subject: [PATCH] ffmpeg: Honour CFLAGS and LDFLAGS Signed-off-by: Michael Tremer --- lfs/ffmpeg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lfs/ffmpeg b/lfs/ffmpeg index 976a4ab13a..dbc2e933e6 100644 --- a/lfs/ffmpeg +++ b/lfs/ffmpeg @@ -86,7 +86,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && ./configure \ + cd $(DIR_APP) && \ + CFLAGS="$(CFLAGS)" \ + LDFLAGS="$(LDFLAGS)" \ + ./configure \ --prefix=/usr \ --enable-shared \ --enable-gpl \ -- 2.39.5