diff options
-rw-r--r-- | test/lit.cfg | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 2f6e945792..ce13f1065c 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -36,10 +36,7 @@ if clang_obj_root is not None: llvm_tools_dir = getattr(config, 'llvm_tools_dir', None) if not llvm_tools_dir: lit.fatal('No LLVM tools dir set!') - path = os.path.pathsep.join((llvm_tools_dir, - os.path.join(config.llvm_src_root, - 'test', 'Scripts'), - config.environment['PATH'])) + path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH'])) config.environment['PATH'] = path ### |