Thomas Heijligen has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/62199 )
Change subject: Makefile: print versioninfo as part of the config target ......................................................................
Makefile: print versioninfo as part of the config target
Change-Id: I1a846acfd8d2e0a9fc8b02c078b6ac0342438490 Signed-off-by: Thomas Heijligen thomas.heijligen@secunet.com --- M Makefile 1 file changed, 1 insertion(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/99/62199/1
diff --git a/Makefile b/Makefile index 852d336..42b0290 100644 --- a/Makefile +++ b/Makefile @@ -410,9 +410,6 @@ # No spaces in release names unless set explicitly RELEASENAME ?= $(shell echo "$(VERSION)" | sed -e 's/ /_/')
-# Inform user of the version string -$(info Replacing all version templates with $(VERSION).) - # If a VCS is found then try to install hooks. $(shell ./util/getrevision.sh -c 2>/dev/null && ./util/git-hooks/install.sh)
@@ -899,6 +896,7 @@ endif
config: + @echo Building $(PROGRAM) version $(VERSION) @echo -n "C compiler found: " @if [ $(CC_WORKING) = yes ]; \ then $(CC) --version 2>/dev/null | head -1; \