Anton Samsonov has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/79156?usp=email )
Change subject: Makefile: Fix version string for non-Git builds ......................................................................
Makefile: Fix version string for non-Git builds
Dummy change to make Jenkins verify the build again after adding Signed-off-by. Change-Id: I5d4e4f1fe72b22c9f31073b02c9b8f40cf2a45ad Signed-off-by: Anton Samsonov devel@zxlab.ru --- M Makefile 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/56/79156/1
diff --git a/Makefile b/Makefile index 08ace29..5d2b540 100644 --- a/Makefile +++ b/Makefile @@ -392,6 +392,7 @@
VERSION ?= $(shell cat ./VERSION) VERSION_GIT ?= $(shell git describe 2>/dev/null) +# Dummy change to make Jenkins verify the build again after adding Signed-off-by. ifneq ($(VERSION_GIT),) VERSION := "$(VERSION) (git:$(VERSION_GIT))" else