GNOME Bugzilla – Bug 625660
gstpythonplugin: fails to refresh plugin registry when installed Python plugins change
Last modified: 2010-08-30 09:54:49 UTC
Created attachment 166837 [details] [review] Proposed patch gstpythonplugin fails to refresh the list of Python elements when new elements are added or old ones are removed. This is because in the call to gst_plugin_add_dependency_simple there are no file or directory dependencies given: the "path" parameter is set to NULL. The attached patch fixes this. Adding, removing, or changing any of the files in any of the locations that are searched for Python elements will now result in the Python plugin being refreshed.
Created attachment 168846 [details] [review] New patch, relative to master
commit 01dda89d42ed5b72d3dde6b6432245dc968f8114 Author: Leo Singer <lsinger@caltech.edu> Date: Mon Aug 30 11:52:58 2010 +0200 plugin: refresh the plugin registry when plugins change.