Do not update LastKnownGoodLLVMSVNRevision.txt automatically; this will be done as part of the ROOT vendor branch import / update.

git-svn-id: http://root.cern.ch/svn/root/trunk@46026 27541ba8-7e3a-0410-8455-c3a389f83636
This commit is contained in:
Axel Naumann 2012-09-18 15:28:45 +00:00
parent c38e4407ef
commit 433174240e

View File

@ -91,21 +91,6 @@ cscope.files:
-or -name '*.td' \
-or -name '*.h' > cscope.files
CurrentSVNRev := $(shell svn info $(PROJ_SRC_ROOT)/Makefile.common | grep -E '^Revision: ' | sed 's,^Revision: ,,')
ifneq ($(CurrentSVNRev),)
LastKnownGoodSVNFile := $(PROJ_SRC_ROOT)/tools/cling/LastKnownGoodLLVMSVNRevision.txt
PreviousSVNRev := $(shell cat $(LastKnownGoodSVNFile))
ifneq (skip,$(shell python -c 'if $(PreviousSVNRev) >= $(CurrentSVNRev): print "skip"'))
# revisions are not the same, update the file.
Makefile: $(LastKnownGoodSVNFile)
$(LastKnownGoodSVNFile): ALWAYS
@echo $(CurrentSVNRev) > $@
.PHONY: ALWAYS
endif # ifneq (skip,...
endif # ifneq ($(CurrentSVNRev),)
.PHONY: test report clean cscope.files
endif