# $Id$ # This module prepends boinc/py/ to the python system path # configure generates boinc/*/boinc_path_config.py from # boinc/py/Boinc/boinc_path_config.py.in (in all directories that contain # python scripts, so that they can directly import path_config.py) import sys, os TOP_BUILD_DIR = "@TOP_BUILD_DIR@" sys.path.insert(0, os.path.join(TOP_BUILD_DIR, 'py'))