From: Michael Tremer Date: Thu, 6 May 2021 09:48:31 +0000 (+0000) Subject: ffmpeg: Honour CFLAGS and LDFLAGS X-Git-Tag: v2.25-core157~12^2~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d73709d8ee01b5e39f6f6ca85801c3c28c18414d;p=ipfire-2.x.git ffmpeg: Honour CFLAGS and LDFLAGS Signed-off-by: Michael Tremer --- 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 \