summaryrefslogtreecommitdiff
path: root/build/Android.cpplint.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build/Android.cpplint.mk')
-rw-r--r--build/Android.cpplint.mk5
1 files changed, 2 insertions, 3 deletions
diff --git a/build/Android.cpplint.mk b/build/Android.cpplint.mk
index ab70e97ac5..6eeaa49d8d 100644
--- a/build/Android.cpplint.mk
+++ b/build/Android.cpplint.mk
@@ -26,9 +26,8 @@ ART_CPPLINT := tools/repohooks/tools/cpplint.py
# Everything that could be moved to CPPLINT.cfg has moved there.
# Please add new settings to CPPLINT.cfg over adding new flags in this file.
-ART_CPPLINT_FLAGS :=
# No output when there are no errors.
-ART_CPPLINT_QUIET := --quiet
+ART_CPPLINT_FLAGS := --quiet
# 1) Get list of all .h & .cc files in the art directory.
# 2) Prepends 'art/' to each of them to make the full name.
@@ -58,7 +57,7 @@ art_cpplint_file := $(1)
art_cpplint_touch := $$(OUT_CPPLINT)/$$(subst /,__,$$(art_cpplint_file))
$$(art_cpplint_touch): $$(art_cpplint_file) $(ART_CPPLINT) $(ART_CPPLINT_CFG) art/build/Android.cpplint.mk
- $(hide) $(ART_CPPLINT) $(ART_CPPLINT_QUIET) $(ART_CPPLINT_FLAGS) $$<
+ $(hide) $(ART_CPPLINT) $(ART_CPPLINT_FLAGS) $$<
$(hide) mkdir -p $$(dir $$@)
$(hide) touch $$@