We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baaf502 commit 69c5ccaCopy full SHA for 69c5cca
Makefile.am
@@ -37,12 +37,13 @@ test-regression:
37
(cd tests && $(MAKE) test-regression)
38
39
cppcheck:
40
- cppcheck . --enable=all --force 2>&1 1>&3 | sed 's/^/warning: /g' 1>&2;
+ cppcheck . --enable=all --force 2>&1 | sed 's/^/warning: /g' 1>&2;
41
42
check-coding-style:
43
for i in `(find . -iname "*.c" ; find . -iname "*.h")`; \
44
- do vera++ -rule L004 -param max-line-length=80 $$i 2>&1 1>&3 | sed 's/^/warning: /g' 1>&2; \
45
- vera++ -rule L001 $$i 2>&1 1>&3 | sed 's/^/warning: /g' 1>&2; \
+ do echo $$i...; \
+ vera++ -rule L004 -param max-line-length=80 $$i 2>&1 | sed 's/^/warning: /g' 1>&2; \
46
+ vera++ -rule L001 $$i 2>&1 | sed 's/^/warning: /g' 1>&2; \
47
done;
48
49
.PHONY: test
0 commit comments