Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c6b66e6 authored by Ying Wang's avatar Ying Wang Committed by android-build-merger
Browse files

Merge "make USER limited to 6 characters when generating BF_BUILD_NUMBER" am: 88ca8aff

am: 79215cde

* commit '79215cde':
  make USER limited to 6 characters when generating BF_BUILD_NUMBER
parents 2867533a 79215cde
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ ifeq (,$(strip $(BUILD_FINGERPRINT)))
  ifneq ($(filter eng.%,$(BUILD_NUMBER)),)
    # Trim down BUILD_FINGERPRINT: the default BUILD_NUMBER makes it easily exceed
    # the Android system property length limit (PROPERTY_VALUE_MAX=92).
    BF_BUILD_NUMBER := $(USER)$(shell $(DATE) +%m%d%H%M)
    BF_BUILD_NUMBER := $(shell echo $${USER:0:6})$(shell $(DATE) +%m%d%H%M)
  else
    BF_BUILD_NUMBER := $(BUILD_NUMBER)
  endif