diff options
author | James Almer <jamrial@gmail.com> | 2013-12-08 15:57:36 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-09 02:02:37 +0100 |
commit | 5f302b1f3819f603349a921458197fa5c35dc396 (patch) | |
tree | 3b5eebb132bee558521eee1733b6e4244625c5ad | |
parent | b07da13ac0f04b9c77efc0b9840e23cc4cd9aa33 (diff) | |
download | ffmpeg-5f302b1f3819f603349a921458197fa5c35dc396.tar.gz |
common.mak: fix the current fate failures with windres
Tested-by: Hendrik Leppkes <h.leppkes@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak index d4d5fcb8ac..48f5c21bcf 100644 --- a/common.mak +++ b/common.mak @@ -61,7 +61,7 @@ COMPILE_HOSTC = $(call COMPILE,HOSTCC) $(COMPILE_HOSTC) %.o: %.rc - $(WINDRES) $(IFLAGS) --preprocessor "$(DEPCC) -E -xc-header -DRC_INVOKED $(CC_DEPFLAGS)" -o $@ $< + $(WINDRES) $(IFLAGS) --preprocessor "$(subst @,,$(DEPCC)) -E -xc-header -DRC_INVOKED $(CC_DEPFLAGS)" -o $@ $< %.i: %.c $(CC) $(CCFLAGS) $(CC_E) $< |