Update to doxygen 1.8.2

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@72899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-11-05 05:20:18 +00:00
parent e38c8527e0
commit a4353a763e
5 changed files with 15 additions and 6 deletions

View File

@@ -777,7 +777,7 @@ def runcmd(cmd, getOutput=False, echoCmd=True, fatal=True):
otherKwArgs = dict(stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
sp = subprocess.Popen(cmd, shell=True, **otherKwArgs)
sp = subprocess.Popen(cmd, shell=True, env=os.environ, **otherKwArgs)
output = None
if getOutput: