mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a missing dependency to the Makefile to avoid error messages in the clean-plugins target
This commit is contained in:
parent
0aba3abaeb
commit
882273d508
@ -2478,6 +2478,8 @@ Tobias Grimm <tobias.grimm@e-tobi.net>
|
|||||||
numbers use a decimal point
|
numbers use a decimal point
|
||||||
for adding dependency on 'i18n' to 'install-i18n' in the VDR Makefile
|
for adding dependency on 'i18n' to 'install-i18n' in the VDR Makefile
|
||||||
for adding a manual page for 'svdrpsend'
|
for adding a manual page for 'svdrpsend'
|
||||||
|
for adding a missing dependency to the Makefile to avoid error messages in the
|
||||||
|
clean-plugins target
|
||||||
|
|
||||||
Helge Lenz <h.lenz@gmx.de>
|
Helge Lenz <h.lenz@gmx.de>
|
||||||
for reporting a bug in setting the 'Delta' parameter when calling the shutdown
|
for reporting a bug in setting the 'Delta' parameter when calling the shutdown
|
||||||
|
4
HISTORY
4
HISTORY
@ -8882,8 +8882,10 @@ Video Disk Recorder Revision History
|
|||||||
- Added a short sleep to cTSBuffer::Action() to avoid high CPU usage (thanks to
|
- Added a short sleep to cTSBuffer::Action() to avoid high CPU usage (thanks to
|
||||||
Sergey Chernyavskiy).
|
Sergey Chernyavskiy).
|
||||||
|
|
||||||
2017-01-05: Version 2.3.3
|
2017-01-08: Version 2.3.3
|
||||||
|
|
||||||
- Added 'S3W ABS-3A' to sources.conf (thanks to Frank Richter).
|
- Added 'S3W ABS-3A' to sources.conf (thanks to Frank Richter).
|
||||||
- Fixed a possible deadlock in the recordings handler thread.
|
- Fixed a possible deadlock in the recordings handler thread.
|
||||||
- Updated the Russian OSD texts (thanks to Andrey Pridvorov).
|
- Updated the Russian OSD texts (thanks to Andrey Pridvorov).
|
||||||
|
- Added a missing dependency to the Makefile to avoid error messages in the
|
||||||
|
clean-plugins target (thanks to Tobias Grimm).
|
||||||
|
4
Makefile
4
Makefile
@ -4,7 +4,7 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: Makefile 4.1 2016/12/22 13:18:32 kls Exp $
|
# $Id: Makefile 4.2 2017/01/08 11:07:19 kls Exp $
|
||||||
|
|
||||||
.DELETE_ON_ERROR:
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
@ -250,7 +250,7 @@ plugins: include-dir vdr.pc
|
|||||||
fi;\
|
fi;\
|
||||||
if [ -n "$$failed" ] ; then echo; echo "*** failed plugins:$$failed"; echo; exit 1; fi
|
if [ -n "$$failed" ] ; then echo; echo "*** failed plugins:$$failed"; echo; exit 1; fi
|
||||||
|
|
||||||
clean-plugins:
|
clean-plugins: vdr.pc
|
||||||
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" VDRDIR="$(CWD)" clean; done
|
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" VDRDIR="$(CWD)" clean; done
|
||||||
@-rm -f $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION)
|
@-rm -f $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user