[GRASS-SVN] r37140 - grass/trunk/lib/gis
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 10 22:47:04 EDT 2009
Author: hamish
Date: 2009-05-10 22:47:04 -0400 (Sun, 10 May 2009)
New Revision: 37140
Modified:
grass/trunk/lib/gis/gisinit.c
Log:
be a bit more blunt in the error message (merge from devbr6)
Modified: grass/trunk/lib/gis/gisinit.c
===================================================================
--- grass/trunk/lib/gis/gisinit.c 2009-05-11 02:43:11 UTC (rev 37139)
+++ grass/trunk/lib/gis/gisinit.c 2009-05-11 02:47:04 UTC (rev 37140)
@@ -51,7 +51,8 @@
G_set_program_name(pgm);
if (strcmp(version, GIS_H_VERSION) != 0)
- G_fatal_error(_("Incompatible library version for module"));
+ G_fatal_error(_("Incompatible library version for module. "
+ "You need to rebuild GRASS or untangle multiple installations."));
/* Make sure location and mapset are set */
G_location_path();
@@ -85,7 +86,8 @@
return;
if (strcmp(version, GIS_H_VERSION) != 0)
- G_fatal_error(_("Incompatible library version for module"));
+ G_fatal_error(_("Incompatible library version for module. "
+ "You need to rebuild GRASS or untangle multiple installations."));
gisinit();
}
More information about the grass-commit
mailing list