Skip to content
Snippets Groups Projects
Commit f3555242 authored by Christian Engwer's avatar Christian Engwer
Browse files

don't test files during checklog-headers, which are marked as

header-check-ignore

[[Imported from SVN: r5890]]
parent 807a6a59
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,8 @@ check-log-headers-am:
list=`echo $(headercheck_PATTERN)`; \
test "$$list" != "$(headercheck_PATTERN)" || exit 0; \
for f in $$list; do \
echo "$(headercheck_IGNORE)" | tr ' ' '\n' | grep -q "$$f"; \
if echo "$(headercheck_IGNORE)" | tr ' ' '\n' | grep -q "$$f"; then continue; fi; \
$(LOG_TIMING) ($(MAKE) headercheck-am SILENT=0 HEADER=$$f; \
$(MAKE) headercheck-am SILENT=0 HEADER=$$f NO_CONFIG_H=1) > $(LOG_FILE) 2>&1; \
$(LOG_STORE) "headercheck" "$$f" "$$path"; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment