We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9acc475 commit b426162Copy full SHA for b426162
src/plugins/grass/qgsgrassmodule.cpp
@@ -63,6 +63,10 @@ QString QgsGrassModule::findExec( QString file )
63
#ifdef Q_OS_WIN
64
mExecPath = path.split( ";" );
65
mExecPath.prepend( QgsGrass::shortPath( QgsApplication::applicationDirPath() ) );
66
+#elif defined(Q_OS_MACX)
67
+ mExecPath = path.split( ":" );
68
+ mExecPath.prepend( QgsApplication::applicationDirPath() + "/bin" );
69
+ mExecPath.prepend( QgsApplication::applicationDirPath() + "/grass/bin" );
70
#else
71
mExecPath = path.split( ":" );
72
mExecPath.prepend( QgsApplication::applicationDirPath() );
0 commit comments