aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-05-27 01:01:05 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-05-27 01:01:05 +0000
commitfa879f3f60b2e176cdab073ad9ad1a70820a0db4 (patch)
tree22da26fda9c9feada367347ea0f75d19497baacf
parenta8ffd6edfd1c3d369339f1e1311fd44104130422 (diff)
parent96f8797e4aa91049be4a2bfa7e5a489a47603cf2 (diff)
downloadandroid_external_strace-fa879f3f60b2e176cdab073ad9ad1a70820a0db4.tar.gz
android_external_strace-fa879f3f60b2e176cdab073ad9ad1a70820a0db4.tar.bz2
android_external_strace-fa879f3f60b2e176cdab073ad9ad1a70820a0db4.zip
Merge "Give in and hard-code the rest of the --version string details." am: 622c7b1a2e am: 2f0113ae20 am: 8b228b3687
am: 96f8797e4a Change-Id: I74f9e00a1b4ef8f20895887c6e898f06cf327a08
-rw-r--r--Android.mk9
1 files changed, 4 insertions, 5 deletions
diff --git a/Android.mk b/Android.mk
index d9a74f39..d2d6edf6 100644
--- a/Android.mk
+++ b/Android.mk
@@ -41,9 +41,8 @@ ifneq ($(strip $(TARGET_ARCH)),mips)
include $(CLEAR_VARS)
-strace_version := $(shell grep strace $(LOCAL_PATH)/debian/changelog | \
- head -1 | cut -d " " -f 2)
-strace_year := $(shell cat $(LOCAL_PATH)/.year)
+strace_version := "4.17"
+strace_year := "2017"
LOCAL_SRC_FILES := \
access.c \
@@ -300,8 +299,8 @@ LOCAL_CFLAGS := \
-DMAJOR_IN_SYSMACROS \
-DPACKAGE_NAME='"strace"' \
-DPACKAGE_URL='"https://strace.io"' \
- -DPACKAGE_VERSION='"$(strace_version)"' \
- -DCOPYRIGHT_YEAR='"$(strace_year)"' \
+ -DPACKAGE_VERSION='$(strace_version)' \
+ -DCOPYRIGHT_YEAR='$(strace_year)' \
-DSIZEOF_KERNEL_LONG_T=SIZEOF_LONG \
-DSIZEOF_OFF_T=SIZEOF_LONG \
-DSIZEOF_LONG_LONG=8 \