summaryrefslogtreecommitdiffstats
path: root/libSYS/src/genericStds.cpp
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-10-22 14:21:12 -0700
committerThe Android Automerger <android-build@google.com>2015-11-03 14:34:52 -0800
commit48b330d303727e1f2671f844a1d541d596f6d5da (patch)
tree510b410f66a888a5d517cacbac717cdfde055115 /libSYS/src/genericStds.cpp
parent9f42dfb7990a107da23454669459bb5e28d90726 (diff)
downloadandroid_external_aac-3d9fd2ecee3a2293d4323dd5b3b26d549abd0887.tar.gz
android_external_aac-3d9fd2ecee3a2293d4323dd5b3b26d549abd0887.tar.bz2
android_external_aac-3d9fd2ecee3a2293d4323dd5b3b26d549abd0887.zip
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 (cherry picked from commit 6e8330732f61d1da1485fc07b61444f490d5e623)
Diffstat (limited to 'libSYS/src/genericStds.cpp')
-rw-r--r--libSYS/src/genericStds.cpp5
1 files changed, 5 insertions, 0 deletions
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 <stdlib.h>
#include <stdio.h>