blob: a6dea385e799547e7706c3b56afcf5bdbbde10ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh /usr/share/dpatch/dpatch-run
## 99_clean.dpatch - Tobias Grimm <tg@e-tobi.nez>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Fixes clean target
@DPATCH@
--- vdr-plugin-live-0.1.0.orig/pages/Makefile
+++ vdr-plugin-live-0.1.0/pages/Makefile
@@ -53,4 +53,4 @@
$(AR) r $@ $^
clean:
- @rm -f *~ *.o core* libpages.a $(OBJS:%.o=%.cpp)
+ @rm -f *~ *.o core* libpages.a $(OBJS:%.o=%.cpp) $(DEPFILE)
|