From bc75277fa99ce0d542ed5ccbfff512f16a594863 Mon Sep 17 00:00:00 2001 From: Ben Marshall Date: Thu, 23 Apr 2020 14:59:03 +0100 Subject: [PATCH] Spec: version tracker tweak - Remove "-dirty" indicator from spec tex make flow. On branch master Your branch is up-to-date with 'origin/master'. Changes to be committed: modified: doc/Makefile Changes not staged for commit: modified: extern/riscv-gnu-toolchain (modified content) modified: extern/riscv-isa-sim (modified content) --- doc/Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/doc/Makefile b/doc/Makefile index e79e4e91..83a6fc0d 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -13,8 +13,6 @@ SPEC_TEX = $(SPEC_TOP) $(wildcard $(REPO_HOME)/doc/tex/*) SPEC_EXTRA= riscv-crypto-spec.sty $(OPCODES) SPEC_COMMIT= $(BUILD_DIR)/spec.commit -REPO_DIRTY =$(shell git diff) - $(OPCODES) : $(REPO_HOME)/tools/opcodes-crypto @mkdir -p $(dir $(OPCODES)) cat $^ | python3 $(REPO_HOME)/bin/parse_opcodes.py -tex > $@ @@ -24,9 +22,6 @@ $(SPEC_COMMIT): @git rev-parse --abbrev-ref HEAD > ${@} @echo "@" >> ${@} @git log --pretty=format:'%H' -n 1 >> ${@} -ifneq ("$(REPO_DIRTY)","") - @echo "{\\\color{red}\\\bf -dirty}" >> ${@} ; -endif $(SPEC_OUT) : $(SPEC_TEX) $(SPEC_EXTRA) $(SPEC_COMMIT) @mkdir -p $(BUILD_DIR)