Index: build/android/gyp/util/md5_check.py |
diff --git a/build/android/gyp/util/md5_check.py b/build/android/gyp/util/md5_check.py |
index 30209445cc481ee84bdb491105d88a49ba5672fc..2ddc3ac48a18f1e4c3e9f11178f6d88da1461709 100644 |
--- a/build/android/gyp/util/md5_check.py |
+++ b/build/android/gyp/util/md5_check.py |
@@ -12,7 +12,7 @@ import zipfile |
# When set and a difference is detected, a diff of what changed is printed. |
-_PRINT_MD5_DIFFS = int(os.environ.get('PRINT_MD5_DIFFS', 0)) |
+PRINT_EXPLANATIONS = int(os.environ.get('PRINT_BUILD_EXPLANATIONS', 0)) |
# An escape hatch that causes all targets to be rebuilt. |
_FORCE_REBUILD = int(os.environ.get('FORCE_REBUILD', 0)) |
@@ -77,7 +77,7 @@ def CallAndRecordIfStale( |
if not changes.HasChanges(): |
return |
- if _PRINT_MD5_DIFFS: |
+ if PRINT_EXPLANATIONS: |
print '=' * 80 |
print 'Target is stale: %s' % record_path |
print changes.DescribeDifference() |