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 304275a commit 810241fCopy full SHA for 810241f
src/core/qgsapplication.cpp
@@ -208,10 +208,10 @@ void QgsApplication::init( QString profileFolder )
208
}
209
else
210
{
211
- if ( ABISYM( mPrefixPath ).isNull() )
+ char *prefixPath = getenv( "QGIS_PREFIX_PATH" );
212
+ if ( !prefixPath )
213
- char *prefixPath = getenv( "QGIS_PREFIX_PATH" );
214
- if ( !prefixPath )
+ if ( ABISYM( mPrefixPath ).isNull() )
215
216
#if defined(Q_OS_MACX) || defined(Q_OS_WIN)
217
setPrefixPath( applicationDirPath(), true );
0 commit comments