I have ever set the env like : env <<"PATH = /home/azhang/env/tool.env" ,
but the result is same. Why?
The space either side of the "=" sign may cause issues.
Qt Code:
  1. env << "TMPDIR=C:\\MyApp\\temp";
To copy to clipboard, switch view to plain text mode 
is good and
Qt Code:
  1. env << "TMPDIR = C:\\MyApp\\temp";
To copy to clipboard, switch view to plain text mode 
is probably not.