[GRASS-SVN] r37139 - grass/branches/releasebranch_6_4/lib/gis
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 10 22:43:12 EDT 2009
Author: hamish
Date: 2009-05-10 22:43:11 -0400 (Sun, 10 May 2009)
New Revision: 37139
Modified:
grass/branches/releasebranch_6_4/lib/gis/gisinit.c
Log:
be a bit more blunt in the error message (merge from devbr6)
Modified: grass/branches/releasebranch_6_4/lib/gis/gisinit.c
===================================================================
--- grass/branches/releasebranch_6_4/lib/gis/gisinit.c 2009-05-10 23:59:39 UTC (rev 37138)
+++ grass/branches/releasebranch_6_4/lib/gis/gisinit.c 2009-05-11 02:43:11 UTC (rev 37139)
@@ -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();
@@ -86,7 +87,8 @@
return 0;
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