[GRASS-dev] shell scripts: variable bash-isms removed

Hi,

from IRC logs I picked this problem:
"/usr/local/grass-6.2.1cvs/scripts/d.vect.thematic: LC_NUMERIC=C: is not an identifier"
(the user works on Solaris).

I have now fixed in CVS all "export" bash-isms in the scripts/
subdirectory and changed from

  export VAR=value

to

  VAR=value
  export VAR

which should solve the problem.
Backported to 6.2 as well.

Markus