summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Donahue <jeff.donahue@gmail.com>2014-02-26 08:49:27 -0800
committerJeff Donahue <jeff.donahue@gmail.com>2014-02-26 16:54:25 -0800
commit52a539dcd10de805def24ba2ace904089a9f1cd0 (patch)
tree62ee79007152be7dff3709623638d98ade9d54ba /Makefile
parent5fdf55c437f7f94948af7d361a80e5b3d6d22e63 (diff)
downloadcaffe-52a539dcd10de805def24ba2ace904089a9f1cd0.tar.gz
caffe-52a539dcd10de805def24ba2ace904089a9f1cd0.tar.bz2
caffe-52a539dcd10de805def24ba2ace904089a9f1cd0.zip
fix python/matlab wrapper bugs introduced by lint; change linter->lint
in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0d22f54c..f8adaad0 100644
--- a/Makefile
+++ b/Makefile
@@ -127,10 +127,10 @@ lint: $(LINT_REPORT)
$(LINT_REPORT): $(NONGEN_CXX_SRCS)
@ mkdir -p $(BUILD_DIR)
@ (python ./scripts/cpp_lint.py $(NONGEN_CXX_SRCS) > $(LINT_REPORT) 2>&1 \
- && (rm -f $(FAILED_LINT_REPORT); echo "No linter errors!")) || ( \
+ && (rm -f $(FAILED_LINT_REPORT); echo "No lint errors!")) || ( \
mv $(LINT_REPORT) $(FAILED_LINT_REPORT); \
grep -v "^Done processing " $(FAILED_LINT_REPORT); \
- echo "Found 1 or more linter errors; see log at $(FAILED_LINT_REPORT)"; \
+ echo "Found 1 or more lint errors; see log at $(FAILED_LINT_REPORT)"; \
exit 1)
test: init $(TEST_BINS)