We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d110452 commit a3c239fCopy full SHA for a3c239f
src/plugins/grass/qgsgrassmodule.cpp
@@ -70,6 +70,10 @@ QString QgsGrassModule::findExec( QString file )
70
#ifdef WIN32
71
mExecPath = path.split( ";" );
72
mExecPath.prepend( QgsGrass::shortPath( QgsApplication::applicationDirPath() ) );
73
+#elif defined(Q_OS_MACX)
74
+ mExecPath = path.split( ":" );
75
+ mExecPath.prepend( QgsApplication::applicationDirPath() + "/bin");
76
+ mExecPath.prepend( QgsApplication::applicationDirPath() + "/grass/bin");
77
#else
78
mExecPath = path.split( ":" );
79
mExecPath.prepend( QgsApplication::applicationDirPath() );
0 commit comments