diff options
author | 2021-11-09 14:10:05 +0000 | |
---|---|---|
committer | 2021-11-10 17:40:37 +0000 | |
commit | cbf71ec69f0ce1bc20418e3ba68430d17f97fed0 (patch) | |
tree | f4e84b0b03805d513b659d3dbfd8d0355f3f0810 | |
parent | 9597748fe00249abe6958c004d17805440cb2992 (diff) |
buildbot-build.sh: add a note that linkerconfig error is not fatal.
Bug: none
Test: ran tests in chroot as described in art/test/README.chroot.md,
observed the note
Change-Id: Id541f736713b90d313a41f2bfe924a880460dc75
-rwxr-xr-x | tools/buildbot-build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/buildbot-build.sh b/tools/buildbot-build.sh index 12ce461539..b08a231124 100755 --- a/tools/buildbot-build.sh +++ b/tools/buildbot-build.sh @@ -16,6 +16,8 @@ set -e +. "$(dirname $0)/buildbot-utils.sh" + shopt -s failglob if [ ! -d art ]; then @@ -387,4 +389,6 @@ EOF rm -rf $linkerconfig_out mkdir -p $linkerconfig_out $ANDROID_HOST_OUT/bin/linkerconfig --target $linkerconfig_out --root $linkerconfig_root --vndk $platform_version + echo -e "${boldcyan}note:${nc} Don't be scared by \"Unable to access VNDK APEX\" message," \ + " it's not fatal" fi |