summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2019-03-21 20:45:59 +0000
committerTom Stellard <tstellar@redhat.com>2019-03-21 20:45:59 +0000
commitf599079a857dbba6af1d377ef9090bb7aa02b6e2 (patch)
treef29e2979f9fad787eaac0a3e07be5f37f5c4664b
parent942abf789e407a03bc0c58800bd7cf3d08e3705a (diff)
git-llvm: Update for release_80 branch
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_80@356714 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/git-svn/git-llvm6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/git-svn/git-llvm b/utils/git-svn/git-llvm
index 53c0b24ae2c8..bf234301f132 100755
--- a/utils/git-svn/git-llvm
+++ b/utils/git-svn/git-llvm
@@ -42,7 +42,7 @@ else:
# It's *almost* a straightforward mapping from the monorepo to svn...
GIT_TO_SVN_DIR = {
- d: (d + '/trunk')
+ d: (d + '/branches/release_80')
for d in [
'clang-tools-extra',
'compiler-rt',
@@ -63,8 +63,8 @@ GIT_TO_SVN_DIR = {
'pstl',
]
}
-GIT_TO_SVN_DIR.update({'clang': 'cfe/trunk'})
-GIT_TO_SVN_DIR.update({'': 'monorepo-root/trunk'})
+GIT_TO_SVN_DIR.update({'clang': 'cfe/branches/release_80'})
+GIT_TO_SVN_DIR.update({'': 'monorepo-root/branches/release_80'})
VERBOSE = False
QUIET = False