[GRASS-SVN] r37136 - grass/branches/develbranch_6/lib/gis
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 10 19:02:37 EDT 2009
Author: hamish
Date: 2009-05-10 19:02:37 -0400 (Sun, 10 May 2009)
New Revision: 37136
Modified:
grass/branches/develbranch_6/lib/gis/gisinit.c
Log:
be a bit more blunt in the error message
Modified: grass/branches/develbranch_6/lib/gis/gisinit.c
===================================================================
--- grass/branches/develbranch_6/lib/gis/gisinit.c 2009-05-10 21:07:36 UTC (rev 37135)
+++ grass/branches/develbranch_6/lib/gis/gisinit.c 2009-05-10 23:02:37 UTC (rev 37136)
@@ -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."));
/* 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."));
gisinit();
More information about the grass-commit
mailing list