summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDaniel Sanders <daniel.sanders@imgtec.com>2013-09-13 12:41:38 +0000
committerDaniel Sanders <daniel.sanders@imgtec.com>2013-09-13 12:41:38 +0000
commit9c38ba4f9f2cf69ed21cf4c31141273d58f5cf6b (patch)
treef7b9aa1be6251ecfbc786524bc8e1f778f088ce7 /utils
parent8312905790f2250d7c807b4c153be7d64ab22572 (diff)
downloadllvm-9c38ba4f9f2cf69ed21cf4c31141273d58f5cf6b.tar.gz
llvm-9c38ba4f9f2cf69ed21cf4c31141273d58f5cf6b.tar.bz2
llvm-9c38ba4f9f2cf69ed21cf4c31141273d58f5cf6b.tar.xz
Fix build failure reported by Tobias Markmann in bug 17203.
svn 1.8.0 emits an additional line matching 'URL:' in its 'svn info' command ('Relative URL:'). Changed the grep to match only the intended line so that a valid SVNVersion.inc is generated. The problem doesnt occur with the svn version I'm using (1.7.5) but Tobias has confirmed that the change fixes the problem. See http://llvm.org/bugs/show_bug.cgi?id=17203 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190685 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-xutils/GetRepositoryPath2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/GetRepositoryPath b/utils/GetRepositoryPath
index f3b0cc56e2..b915251c1a 100755
--- a/utils/GetRepositoryPath
+++ b/utils/GetRepositoryPath
@@ -15,7 +15,7 @@ fi
cd $1
if [ -d .svn ]; then
- svn info | grep 'URL:' | cut -d: -f2-
+ svn info | grep '^URL:' | cut -d: -f2-
elif [ -f .git/svn/.metadata ]; then
git svn info | grep 'URL:' | cut -d: -f2-
elif [ -d .git ]; then