am 34a1bdeb: am ea1dc699: Merge "Rewrite ro.vendor.build.fingerprint/thumbprint on signing" into lmp-mr1-dev

* commit '34a1bdeb333ab15ddc3840ac3e5d1e8c3245d44a':
  Rewrite ro.vendor.build.fingerprint/thumbprint on signing
This commit is contained in:
Michael Runge 2014-12-15 22:46:33 +00:00 committed by Android Git Automerger
commit 2b800123c4
1 changed files with 2 additions and 2 deletions

View File

@ -296,12 +296,12 @@ def RewriteProps(data, misc_info):
original_line = line
if line and line[0] != '#' and "=" in line:
key, value = line.split("=", 1)
if (key == "ro.build.fingerprint"
if (key in ("ro.build.fingerprint", "ro.vendor.build.fingerprint")
and misc_info.get("oem_fingerprint_properties") is None):
pieces = value.split("/")
pieces[-1] = EditTags(pieces[-1])
value = "/".join(pieces)
elif (key == "ro.build.thumbprint"
elif (key in ("ro.build.thumbprint", "ro.vendor.build.thumbprint")
and misc_info.get("oem_fingerprint_properties") is not None):
pieces = value.split("/")
pieces[-1] = EditTags(pieces[-1])