diff mbox series

[FFmpeg-devel] common.mak: Also clean Windows debug files

Message ID CAB0OVGoL4S9bYRX6yVmt3JhGT-SY3_1zxSaXFbYWeMp-GvQjew@mail.gmail.com
State Accepted
Headers show
Series [FFmpeg-devel] common.mak: Also clean Windows debug files | expand

Checks

Context Check Description
andriy/ffmpeg-patchwork success Make fate finished

Commit Message

Carl Eugen Hoyos March 18, 2020, 11:38 p.m. UTC
Hi!

Without this patch, make clean (and make distclean) do not delete
ffmpeg_g.ilk and ffmpeg_g.pdb (and friends).

Please comment, Carl Eugen

Comments

Hendrik Leppkes March 21, 2020, 12:56 a.m. UTC | #1
On Thu, Mar 19, 2020 at 12:39 AM Carl Eugen Hoyos <ceffmpeg@gmail.com> wrote:
>
> Hi!
>
> Without this patch, make clean (and make distclean) do not delete
> ffmpeg_g.ilk and ffmpeg_g.pdb (and friends).
>

LGTM
Carl Eugen Hoyos March 21, 2020, 9:09 p.m. UTC | #2
Am Sa., 21. März 2020 um 02:04 Uhr schrieb Hendrik Leppkes
<h.leppkes@gmail.com>:
>
> On Thu, Mar 19, 2020 at 12:39 AM Carl Eugen Hoyos <ceffmpeg@gmail.com> wrote:
> >
> > Hi!
> >
> > Without this patch, make clean (and make distclean) do not delete
> > ffmpeg_g.ilk and ffmpeg_g.pdb (and friends).
> >
>
> LGTM

Patch applied.

Thank you, Carl Eugen
diff mbox series

Patch

From 7300a2e0bb316edb28347180f7878fc81d1f406a Mon Sep 17 00:00:00 2001
From: Carl Eugen Hoyos <ceffmpeg@gmail.com>
Date: Thu, 19 Mar 2020 00:35:21 +0100
Subject: [PATCH] common.mak: Also clean Windows debug files.

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

diff --git a/ffbuild/common.mak b/ffbuild/common.mak
index 7355508ea0..a60d27c9bd 100644
--- a/ffbuild/common.mak
+++ b/ffbuild/common.mak
@@ -162,7 +162,7 @@  $(TOOLOBJS): | tools
 
 OUTDIRS := $(OUTDIRS) $(dir $(OBJS) $(HOBJS) $(HOSTOBJS) $(SLIBOBJS) $(TESTOBJS))
 
-CLEANSUFFIXES     = *.d *.gcda *.gcno *.h.c *.ho *.map *.o *.pc *.ptx *.ptx.c *.ver *.version *$(DEFAULT_X86ASMD).asm *~
+CLEANSUFFIXES     = *.d *.gcda *.gcno *.h.c *.ho *.map *.o *.pc *.ptx *.ptx.c *.ver *.version *$(DEFAULT_X86ASMD).asm *~ *.ilk *.pdb
 LIBSUFFIXES       = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a
 
 define RULES
-- 
2.24.1