Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
merge r10134 from trunk
git-svn-id: http://svn.osgeo.org/qgis/branches/Version-1_0@10135 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Feb 8, 2009
1 parent 43882fa commit 126bb08
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/providers/grass/qgsgrass.cpp
Expand Up @@ -89,7 +89,12 @@ void GRASS_EXPORT QgsGrass::init( void )
// This is set when QGIS is run from within GRASS
// or when set explicitly by the user.
// This value should always take precedence.
#if WIN32
QString gisBase = getenv( "WINGISBASE" ) ? getenv("WINGISBASE") : getenv("GISBASE");
gisBase = getShortPath( gisBase );
#else
QString gisBase = getenv( "GISBASE" );
#endif
#ifdef QGISDEBUG
qDebug( "%s:%d GRASS gisBase from GISBASE env var is: %s", __FILE__, __LINE__, gisBase.toAscii().constData() );
#endif
Expand Down

0 comments on commit 126bb08

Please sign in to comment.