From bc7eb8e6916620264e0bcdf0045e2747e3bdde15 Mon Sep 17 00:00:00 2001 From: Erik Walthinsen Date: Fri, 23 Feb 2001 01:57:43 +0000 Subject: [PATCH] always include the installed plugin directories in the path Original commit message from CVS: always include the installed plugin directories in the path --- gst/gstplugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/gstplugin.c b/gst/gstplugin.c index f6a5d73ad2..7e43fe8124 100644 --- a/gst/gstplugin.c +++ b/gst/gstplugin.c @@ -80,10 +80,10 @@ _gst_plugin_initialize (void) PLUGINS_SRCDIR "/gst/elements"); _gst_plugin_paths = g_list_prepend (_gst_plugin_paths, PLUGINS_SRCDIR "/gst/types"); -#else /* PLUGINS_USE_SRCDIR */ +#endif /* PLUGINS_USE_SRCDIR */ + /* add the main (installed) library path */ _gst_plugin_paths = g_list_prepend (_gst_plugin_paths, PLUGINS_DIR); -#endif /* PLUGINS_USE_SRCDIR */ doc = xmlParseFile (GST_CONFIG_DIR"/reg.xml");