From 2f2ffdf4d83dad1bb99dce4cda61156d1bf88d2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 6 Feb 2013 09:52:19 +0100 Subject: [PATCH] fix python version to the one used with the testsuite script --- Documentation/testsuite.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/testsuite.py b/Documentation/testsuite.py index d28ea80deb7..ace8f011e86 100755 --- a/Documentation/testsuite.py +++ b/Documentation/testsuite.py @@ -68,7 +68,7 @@ def purge_doc(): shutil.rmtree(output) def run_doxyassist(doxyassist, doxygen): - subprocess.call([doxyassist, '--debug', '--doxygen', doxygen, 'doxyassist.xml']) + subprocess.call([sys.executable,doxyassist, '--debug', '--doxygen', doxygen, 'doxyassist.xml']) def get_version(): rev=subprocess.check_output(['git', 'rev-parse', 'HEAD'], universal_newlines=True) @@ -155,7 +155,7 @@ def main(): # two runs are required, one to build the tags, the next to actually use them run_doxyassist(doxyassist, doxygen) run_doxyassist(doxyassist, doxygen) - subprocess.call(['./html_output_post_processing.py', '--output', './output']) + subprocess.call([sys.executable,'./html_output_post_processing.py', '--output', './output']) d, sum=write_report() version_string,version_date=get_version()