Gaudi: syntax fix (#16523)

This commit is contained in:
iarspider 2020-05-08 19:17:48 +02:00 committed by GitHub
parent 33e88db2d6
commit 652e179ae6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,9 +102,9 @@ def cmake_args(self):
def setup_run_environment(self, env):
# environment as in Gaudi.xenv
env.prepend.path('PATH', self.prefix.scripts)
env.prepend.path('PYTHONPATH', self.prefix.python)
env.prepend.path('ROOT_INCLUDE_PATH', self.prefix.include)
env.prepend_path('PATH', self.prefix.scripts)
env.prepend_path('PYTHONPATH', self.prefix.python)
env.prepend_path('ROOT_INCLUDE_PATH', self.prefix.include)
def url_for_version(self, version):
major = str(version[0])