diff options
author | Ed Heyl <edheyl@google.com> | 2010-03-05 11:59:58 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-03-05 11:59:58 -0800 |
commit | cd47f11dfad012be1b176ea06904a00da157ed7b (patch) | |
tree | 18565631f2ff4911f8ce02101011a13518a6b5c8 | |
parent | ee2b21dba2740dcb47a68b8d1ed671b425c96948 (diff) | |
parent | 65e185b51ec655518f1917418cd6192400ac439d (diff) | |
download | frameworks_base-cd47f11dfad012be1b176ea06904a00da157ed7b.zip frameworks_base-cd47f11dfad012be1b176ea06904a00da157ed7b.tar.gz frameworks_base-cd47f11dfad012be1b176ea06904a00da157ed7b.tar.bz2 |
Merge "Change an aapt "warning" from "*** " to "**** " (from three to four stars). "*** " (three stars and a space) is the 'magic make error string'; so this change makes it easier to find the real issues/errors in build logs. Besides, other aapt messages are "**** "."
-rw-r--r-- | tools/aapt/ResourceTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/ResourceTable.cpp b/tools/aapt/ResourceTable.cpp index 0b531c2..1f9d152 100644 --- a/tools/aapt/ResourceTable.cpp +++ b/tools/aapt/ResourceTable.cpp @@ -2369,7 +2369,7 @@ ResourceTable::validateLocalizations(void) if (configSet.find(region) == configSet.end()) { if (configSet.count(defaultLocale) == 0) { fprintf(stdout, "aapt: warning: " - "*** string '%s' has no default or required localization " + "**** string '%s' has no default or required localization " "for '%s' in %s\n", String8(nameIter->first).string(), config.string(), |