From 6e8330732f61d1da1485fc07b61444f490d5e623 Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Thu, 22 Oct 2015 14:21:12 -0700 Subject: Remove __DATE__/__TIME__ Building __DATE__/__TIME__ into the binaries means that every build will create different binaries, even if all the sources are identical. This also means that any libraries including this one will need to be patched during every OTA. Nothing appears to use the build_date/build_time fields, so just replace them with empty strings. Bug: 24204119 Change-Id: I9543eb388a1e8ab9284df9035a62fc8942cdc082 --- libSYS/src/genericStds.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libSYS') diff --git a/libSYS/src/genericStds.cpp b/libSYS/src/genericStds.cpp index 72b5467..47d62fc 100644 --- a/libSYS/src/genericStds.cpp +++ b/libSYS/src/genericStds.cpp @@ -101,8 +101,13 @@ amm-info@iis.fraunhofer.de #define SYS_LIB_VL1 3 #define SYS_LIB_VL2 6 #define SYS_LIB_TITLE "System Integration Library" +#ifdef __ANDROID__ +#define SYS_LIB_BUILD_DATE "" +#define SYS_LIB_BUILD_TIME "" +#else #define SYS_LIB_BUILD_DATE __DATE__ #define SYS_LIB_BUILD_TIME __TIME__ +#endif #include #include -- cgit v1.2.3