ffmpeg | branch: master | Timothy Gu <[email protected]> | Tue Dec  1 
20:55:37 2015 -0800| [bd4d192081230b217ecab14d39daf06f40067191] | committer: 
Timothy Gu

common.mak: Use CCFLAGS for assembly generation as well

CCFLAGS is equivalent to CPPFLAGS + CFLAGS, and it is already being used
by other make rules like %.i and %.o. Simplifies common.mak.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bd4d192081230b217ecab14d39daf06f40067191
---

 common.mak |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common.mak b/common.mak
index 5645e2d..3812149 100644
--- a/common.mak
+++ b/common.mak
@@ -67,7 +67,7 @@ COMPILE_HOSTC = $(call COMPILE,HOSTCC)
        $(COMPILE_M)
 
 %.s: %.c
-       $(CC) $(CPPFLAGS) $(CFLAGS) -S -o $@ $<
+       $(CC) $(CCFLAGS) -S -o $@ $<
 
 %.o: %.S
        $(COMPILE_S)

_______________________________________________
ffmpeg-cvslog mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

Reply via email to