Fix LLVMRevision source URL in cpt.py

LLVMRevision is being retrieved from an old URL, which contains the wrong LLVM revision. Update it to point at the current cling repository.
This commit is contained in:
Robert Xiao 2014-09-25 11:09:15 -04:00 committed by sftnight
parent 90934a440b
commit 1b99067bb0

View File

@ -1354,7 +1354,7 @@ prefix = ''
LLVM_GIT_URL = args['with_llvm_url']
CLANG_GIT_URL = args['with_clang_url']
CLING_GIT_URL = args['with_cling_url']
LLVMRevision = urllib2.urlopen("https://raw.githubusercontent.com/ani07nov/cling/master/LastKnownGoodLLVMSVNRevision.txt").readline().strip()
LLVMRevision = urllib2.urlopen("https://raw.githubusercontent.com/vgvassilev/cling/master/LastKnownGoodLLVMSVNRevision.txt").readline().strip()
VERSION = ''
REVISION = ''