[GRASS-SVN] r37071 - grass/trunk/lib/gis
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat May 9 11:37:07 EDT 2009
Author: glynn
Date: 2009-05-09 11:37:07 -0400 (Sat, 09 May 2009)
New Revision: 37071
Modified:
grass/trunk/lib/gis/spawn.c
Log:
G_spawn() needs _spawnvp() rather than _spawnv() on Windows
Modified: grass/trunk/lib/gis/spawn.c
===================================================================
--- grass/trunk/lib/gis/spawn.c 2009-05-09 15:11:45 UTC (rev 37070)
+++ grass/trunk/lib/gis/spawn.c 2009-05-09 15:37:07 UTC (rev 37071)
@@ -81,7 +81,7 @@
return -1;
}
- return _spawnv(_P_WAIT, command, args);
+ return _spawnvp(_P_WAIT, command, args);
}
#else
More information about the grass-commit
mailing list