aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2021-02-04 23:42:06 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-02-04 23:42:06 +0000
commit4e04f242fc5652dd3cb4e55a8396d7a5e01406c2 (patch)
tree8f6a53da2a35cea82d0352f70c2e6bd1fb7abf93
parentbd879fd0f3664bcad028c955e2bace4cae478607 (diff)
parent19bd2e2ad927996388fa620bc1b6840a6ba8d9eb (diff)
downloadcpython3-4e04f242fc5652dd3cb4e55a8396d7a5e01406c2.tar.gz
[kokoro python] update debug logging am: 19bd2e2ad9
Original change: https://android-review.googlesource.com/c/platform/external/python/cpython3/+/1576744 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I9811b6510ed442d26f6fce88c80bd50710ba8da5
-rw-r--r--Lib/distutils/unixccompiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py
index c1fe89ea70..8ce56a762c 100644
--- a/Lib/distutils/unixccompiler.py
+++ b/Lib/distutils/unixccompiler.py
@@ -113,10 +113,10 @@ class UnixCCompiler(CCompiler):
if sys.platform == 'darwin':
print("====cc_args: " + repr(cc_args))
print("====extra_postargs: " + repr(extra_postargs))
- print("====Compiler_so before fixup: " + repr(self.compiler_so))
+ print("====Compiler_so before fixup: " + repr(compiler_so))
compiler_so = _osx_support.compiler_fixup(compiler_so,
cc_args + extra_postargs)
- print("====Compiler_so after fixup: " + repr(self.compiler_so))
+ print("====Compiler_so after fixup: " + repr(compiler_so))
try:
self.spawn(compiler_so + cc_args + [src, '-o', obj] +
extra_postargs)