From bf4741d56c55172ffbeffdf21b8d2e5ff5916991 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Mon, 10 Jul 2017 17:14:20 -0700 Subject: [PATCH] Don't include the build number in `toybox --version`. This adds undesired noise to OTA packages, and isn't worth that cost. Bug: http://b/63513984 Test: toybox --version Change-Id: Ied2b55155411acb5e73d250c62a8f26d6fa02908 --- Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.mk b/Android.mk index c1d59599..f0cd500e 100644 --- a/Android.mk +++ b/Android.mk @@ -226,7 +226,7 @@ common_CFLAGS := \ toybox_upstream_version := $(shell sed 's/#define.*TOYBOX_VERSION.*"\(.*\)"/\1/p;d' $(LOCAL_PATH)/main.c) -toybox_version := $(toybox_upstream_version)-android-$(BUILD_NUMBER_FROM_FILE) +toybox_version := $(toybox_upstream_version)-android toybox_common_libraries := liblog libcutils libcrypto libz -- 2.11.0