> - Modified the Makefile to copy additional libraries a plugin might provide The change above fixes installation of the libraries, but I think some cleanup still needs to be added to the Makefile. --snip-- --- vdr-1.4.0/Makefile.orig 2006-05-14 08:29:39.000000000 -0700 +++ vdr-1.4.0/Makefile 2006-05-14 08:30:36.000000000 -0700 @@ -191,7 +191,7 @@ 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/*.so.$(APIVERSION) # Install the files: --snip-- Best Regards.