Include 'CHECK: ' prefix when printing name of each syntax-check rule that is run

This commit is contained in:
Daniel P. Berrange 2009-03-24 11:00:21 +00:00
parent 60623a7ce0
commit 667f669fdc
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Mar 24 10:51:22 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
* src/Makefile.maint: Include 'CHECK: ' prefix when printing
name of each syntax-check rule that is run
Tue Mar 24 10:51:22 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
* src/openvz_conf.c, src/openvz_conf.h, src/openvz_driver.c: Add

View File

@ -32,7 +32,7 @@ local-checks-available = \
# Arrange to print the name of each syntax-checking rule just before running it.
$(syntax-check-rules): %: %.m
$(patsubst %, %.m, $(syntax-check-rules)):
@echo $(patsubst sc_%.m, %, $@)
@echo "CHECK:" $(patsubst sc_%.m, %, $@)
local-check := $(filter-out $(local-checks-to-skip), $(local-checks-available))