[GRASS-SVN] r39437 - grass/branches/develbranch_6/lib/gis

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Oct 8 03:53:45 EDT 2009


Author: martinl
Date: 2009-10-08 03:53:45 -0400 (Thu, 08 Oct 2009)
New Revision: 39437

Modified:
   grass/branches/develbranch_6/lib/gis/parser.c
Log:
Glynn: Python 2.6 tries to execute argv[0]
       (merge r39434 from trunk)


Modified: grass/branches/develbranch_6/lib/gis/parser.c
===================================================================
--- grass/branches/develbranch_6/lib/gis/parser.c	2009-10-08 07:50:24 UTC (rev 39436)
+++ grass/branches/develbranch_6/lib/gis/parser.c	2009-10-08 07:53:45 UTC (rev 39437)
@@ -1998,7 +1998,7 @@
 
     sprintf(script, "%s/etc/wxpython/gui_modules/menuform.py",
 	    getenv("GISBASE"));
-    G_spawn(getenv("GRASS_PYTHON"), "menuform.py", script, pgm_name, NULL);
+    G_spawn(getenv("GRASS_PYTHON"), getenv("GRASS_PYTHON"), script, pgm_name, NULL);
 }
 
 /**



More information about the grass-commit mailing list