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

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Jan 28 09:36:56 EST 2010


Author: glynn
Date: 2010-01-28 09:36:55 -0500 (Thu, 28 Jan 2010)
New Revision: 40724

Modified:
   grass/branches/develbranch_6/lib/gis/parser.c
Log:
Fix bug in r40713


Modified: grass/branches/develbranch_6/lib/gis/parser.c
===================================================================
--- grass/branches/develbranch_6/lib/gis/parser.c	2010-01-28 14:29:57 UTC (rev 40723)
+++ grass/branches/develbranch_6/lib/gis/parser.c	2010-01-28 14:36:55 UTC (rev 40724)
@@ -1969,9 +1969,9 @@
 	fp = G_popen("\"%GRASS_WISH%\"", "w");
 #else
     if (getenv("GRASS_DEBUG_GUI"))
-	fp = G_popen("tee gui_dump.tcl | '$GRASS_WISH'", "w");
+	fp = G_popen("tee gui_dump.tcl | \"$GRASS_WISH\"", "w");
     else
-	fp = G_popen("'$GRASS_WISH'", "w");
+	fp = G_popen("\"$GRASS_WISH\"", "w");
 #endif
 
     if (!fp)



More information about the grass-commit mailing list