Skip to content

Commit 522a841

Browse files
author
gjm
committed
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@13930 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent b454500 commit 522a841

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/app/qgisapp.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -4931,9 +4931,7 @@ void QgisApp::showPluginManager()
49314931
void QgisApp::loadPythonSupport()
49324932
{
49334933
QString pythonlibName( "qgispython" );
4934-
#if defined(Q_WS_MAC)
4935-
pythonlibName.prepend( QgsApplication::prefixPath() + "/lib/" );
4936-
#elif defined(Q_OS_LINUX)
4934+
#if defined(Q_WS_MAC) || defined(Q_OS_LINUX)
49374935
pythonlibName.prepend( QgsApplication::prefixPath() + "/" + QGIS_LIB_SUBDIR + "/" );
49384936
#endif
49394937
#ifdef __MINGW32__

0 commit comments

Comments
 (0)