Fixed the "plugins-clean" and "plugins-install" targets in the Makefile

This commit is contained in:
Klaus Schmidinger 2006-01-08 16:14:12 +01:00
parent f38b7871ad
commit 227034f8e6
3 changed files with 7 additions and 4 deletions

View File

@ -855,6 +855,7 @@ Andreas Brachold <vdr04@deltab.de>
for reporting that there are empty info.vdr files created if there is no EPG for reporting that there are empty info.vdr files created if there is no EPG
info available info available
for implementing the SVDRP command MOVC for implementing the SVDRP command MOVC
for fixing the "plugins-clean" and "plugins-install" targets in the Makefile
Manuel Hartl <icecep@gmx.net> Manuel Hartl <icecep@gmx.net>
for suggesting to extend the logging info when starting/stopping timers for suggesting to extend the logging info when starting/stopping timers

View File

@ -4141,3 +4141,5 @@ Video Disk Recorder Revision History
of the timers listed with their unique channel ids instead of their numbers of the timers listed with their unique channel ids instead of their numbers
(suggested by Matthias Schniedermeyer). (suggested by Matthias Schniedermeyer).
- Added a missing #include <linux/unistd.h> to thread.c (thanks to Ville Skyttä). - Added a missing #include <linux/unistd.h> to thread.c (thanks to Ville Skyttä).
- Fixed the "plugins-clean" and "plugins-install" targets in the Makefile (thanks
to Andreas Brachold).

View File

@ -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 1.81 2006/01/01 15:12:05 kls Exp $ # $Id: Makefile 1.82 2006/01/08 16:12:26 kls Exp $
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
@ -192,7 +192,7 @@ plugins: include-dir
plugins-clean: plugins-clean:
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) -C "$(PLUGINDIR)/src/$$i" clean; done @for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) -C "$(PLUGINDIR)/src/$$i" clean; done
@-rm -f $(PLUGINLIBDIR)/libvdr-*.so.$(VDRVERSION) @-rm -f $(PLUGINDIR)/lib/libvdr-*.so.$(VDRVERSION)
# Install the files: # Install the files:
@ -209,8 +209,8 @@ install:
fi fi
plugins-install: plugins-install:
@mkdir -p $(BINDIR)/$(PLUGINLIBDIR) @mkdir -p $(PLUGINLIBDIR)
@cp $(PLUGINLIBDIR)/* $(BINDIR)/$(PLUGINLIBDIR) @cp $(PLUGINDIR)/lib/libvdr-*.so.$(VDRVERSION) $(PLUGINLIBDIR)
# Source documentation: # Source documentation: