diff options
author | Craig Tiller <ctiller@google.com> | 2016-02-09 12:20:43 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-02-09 12:20:43 -0800 |
commit | b0154c4d546ae6383365e753c1b786ac7b23c912 (patch) | |
tree | eeca6bba1dc3a25111d0890b6a7dfdeb69cc9cba | |
parent | da179ce5987e80b76676e5f870cf73fe0fe8874d (diff) |
Stop generating .pyc files in boringssl
-rwxr-xr-x | src/boringssl/gen_build_yaml.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/boringssl/gen_build_yaml.py b/src/boringssl/gen_build_yaml.py index 7c7a57993f..3a7116b181 100755 --- a/src/boringssl/gen_build_yaml.py +++ b/src/boringssl/gen_build_yaml.py @@ -33,6 +33,8 @@ import sys import os import yaml +sys.dont_write_bytecode = True + boring_ssl_root = os.path.abspath(os.path.join( os.path.dirname(sys.argv[0]), '../../third_party/boringssl')) |