]> git.sesse.net Git - vlc/blobdiff - src/modules/modules.c
Install and look for plugins in plugins/, not modules/ (fixes: #3352)
[vlc] / src / modules / modules.c
index 894168fa06e78b77a4798376fffa72b10a2d9b8f..ccbd1575bfdc693d665d98def9ad6f4ac0911d0f 100644 (file)
@@ -819,10 +819,8 @@ static void AllocateAllPlugins( vlc_object_t *p_this, module_bank_t *p_bank )
     const bool b_reset = var_InheritBool( p_this, "reset-plugins-cache" );
 
     /* Contruct the special search path for system that have a relocatable
-     * executable. Set it to <vlc path>/modules and <vlc path>/plugins. */
+     * executable. Set it to <vlc path>/plugins. */
 
-    if( vlcpath && asprintf( &path, "%s" DIR_SEP "modules", vlcpath ) != -1 )
-        vlc_array_append( arraypaths, path );
     if( vlcpath && asprintf( &path, "%s" DIR_SEP "plugins", vlcpath ) != -1 )
         vlc_array_append( arraypaths, path );
 #ifndef WIN32