diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-06-02 14:48:21 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-06-02 14:48:21 +0200 |
commit | 833d649e13613686c8c4ac6a33ed6010310b4ede (patch) | |
tree | 84274052a60f8665b531d49800f8fe3428f582e4 /Makefile | |
parent | 7997b678f292bf59dcca79d2791258d219e7a676 (diff) | |
download | vdr-833d649e13613686c8c4ac6a33ed6010310b4ede.tar.gz vdr-833d649e13613686c8c4ac6a33ed6010310b4ede.tar.bz2 |
Fixed the 'clean-plugins' target in the Makefile to also remove additional plugin libraries
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 1.93 2006/05/26 10:42:17 kls Exp $ +# $Id: Makefile 1.94 2006/06/02 14:45:33 kls Exp $ .DELETE_ON_ERROR: @@ -191,7 +191,7 @@ plugins: include-dir clean-plugins: @for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) -C "$(PLUGINDIR)/src/$$i" clean; done - @-rm -f $(PLUGINDIR)/lib/libvdr-*.so.$(APIVERSION) + @-rm -f $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) # Install the files: |