On Wed, Nov 10, 2010 at 11:39 AM, Hamish <[email protected]> wrote: >> try r44284, hopefully fixed. > > perhaps buggy: > > - CMDLINE="`basename $0`" > + CMDLINE="`basename "$0"`" > > > becomes "`basename " + $0 + "`" > > afair the " do not nest. > > maybe outer quotes are not needed? > (but regardless I'm fairly sure this is not the cause of the v.colors bug, > just a red herring)
For the record: Fixed in r45247 (6.4) and r45248 (6.5) with only the inner quotes: CMDLINE=`basename "$0"` Tested successfully for v.in.geonames. This should also fix odd wxGUI/XML errors. Markus _______________________________________________ grass-user mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/grass-user
