]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
ffmpeg: Honour CFLAGS and LDFLAGS
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 6 May 2021 09:48:31 +0000 (09:48 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 6 May 2021 09:48:31 +0000 (09:48 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/ffmpeg

index 976a4ab13a239336235b56f001aa631e457c1ff4..dbc2e933e62d6a2842d41fc8931f41279eae82bb 100644 (file)
@@ -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 \