Skip to content

Commit

Permalink
Merge pull request #7150 from rouault/fix_plugin_login
Browse files Browse the repository at this point in the history
Plugin loading: only load .so files on Linux
  • Loading branch information
m-kuhn committed Jun 11, 2018
2 parents d98c14a + 427ac10 commit 5567223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgspluginregistry.cpp
Expand Up @@ -484,7 +484,7 @@ void QgsPluginRegistry::restoreSessionPlugins( const QString &pluginDirString )
#elif ANDROID
QString pluginExt = "*plugin.so";
#else
QString pluginExt = QStringLiteral( "*.so*" );
QString pluginExt = QStringLiteral( "*.so" );
#endif

// check all libs in the current plugin directory and get name and descriptions
Expand Down

0 comments on commit 5567223

Please sign in to comment.