Skip to content
Snippets Groups Projects
Commit 16423ff1 authored by Campbell, Stuart's avatar Campbell, Stuart
Browse files

Added hack so that users are not forced to have LD_LIBRARY_PATH set. refs #3614

parent 6803ae98
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,11 @@ else:
else: # Give it a go how it is
_var = ''
_sep = ''
_oldpath = os.environ[_var]
try:
_oldpath = os.environ[_var]
except:
_oldpath = ''
_sep = ''
os.environ[_var] = os.environ['MANTIDPATH'] + _sep + _oldpath
#######################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment