From ce7bcb209033409715ce05f1490d34bc8ba2811c Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Wed, 20 Sep 2017 20:31:24 +0000 Subject: [PATCH] [lit] Undo the patch to stop writing pyc files. The problems on the bots appear to be resolved and this was determined to not be the culprit. Removing this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@313807 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/lit/lit.py | 2 -- utils/llvm-lit/llvm-lit.in | 2 -- 2 files changed, 4 deletions(-) diff --git a/utils/lit/lit.py b/utils/lit/lit.py index 22a8e7b016a..af070c69b5b 100755 --- a/utils/lit/lit.py +++ b/utils/lit/lit.py @@ -1,8 +1,6 @@ #!/usr/bin/env python import sys -sys.dont_write_bytecode = True - from lit.main import main if __name__=='__main__': diff --git a/utils/llvm-lit/llvm-lit.in b/utils/llvm-lit/llvm-lit.in index 22e4f6f57fc..a12056dcc55 100755 --- a/utils/llvm-lit/llvm-lit.in +++ b/utils/llvm-lit/llvm-lit.in @@ -3,8 +3,6 @@ import os import sys -sys.dont_write_bytecode = True - config_map = {} def map_config(source_dir, site_config): -- 2.40.0