Skip to content
Permalink
Browse files
Implement suggestion in #2882 (make the Mac build use the configurable
directory for the lib install directory - rather than the hard-coded
'lib').


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13930 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gjm committed Jul 18, 2010
1 parent 355b9e2 commit a0b2822
Showing 1 changed file with 1 addition and 3 deletions.
@@ -4931,9 +4931,7 @@ void QgisApp::showPluginManager()
void QgisApp::loadPythonSupport()
{
QString pythonlibName( "qgispython" );
#if defined(Q_WS_MAC)
pythonlibName.prepend( QgsApplication::prefixPath() + "/lib/" );
#elif defined(Q_OS_LINUX)
#if defined(Q_WS_MAC) || defined(Q_OS_LINUX)
pythonlibName.prepend( QgsApplication::prefixPath() + "/" + QGIS_LIB_SUBDIR + "/" );
#endif
#ifdef __MINGW32__

0 comments on commit a0b2822

Please sign in to comment.