Commit 7df9ab84 authored by Linus Torvalds's avatar Linus Torvalds

make certificate list change message more useful

It's a bug in our Makefile rules, make it show what the changing
certificate list was, and make it a warning so that people actually see
it.
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e965b8ce
...@@ -137,7 +137,7 @@ endif ...@@ -137,7 +137,7 @@ endif
ifneq ($(wildcard $(obj)/.x509.list),) ifneq ($(wildcard $(obj)/.x509.list),)
ifneq ($(shell cat $(obj)/.x509.list),$(X509_CERTIFICATES)) ifneq ($(shell cat $(obj)/.x509.list),$(X509_CERTIFICATES))
$(info X.509 certificate list changed) $(warning X.509 certificate list changed to "$(X509_CERTIFICATES)" from "$(shell cat $(obj)/.x509.list)")
$(shell rm $(obj)/.x509.list) $(shell rm $(obj)/.x509.list)
endif endif
endif endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment