diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2013-09-13 12:41:38 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2013-09-13 12:41:38 +0000 |
commit | eb03a37cfac9b13f609457fa9ebaeb75b349f80c (patch) | |
tree | ba7ea6d1b7c4a96de66e2ea3ee46425a377006d5 /llvm/utils/GetRepositoryPath | |
parent | 31d09b0cef3c93629e1af8bdf4fff2a1c64a6e68 (diff) | |
download | bcm5719-llvm-eb03a37cfac9b13f609457fa9ebaeb75b349f80c.tar.gz bcm5719-llvm-eb03a37cfac9b13f609457fa9ebaeb75b349f80c.zip |
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
llvm-svn: 190685
Diffstat (limited to 'llvm/utils/GetRepositoryPath')
-rwxr-xr-x | llvm/utils/GetRepositoryPath | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/GetRepositoryPath b/llvm/utils/GetRepositoryPath index f3b0cc56e25..b915251c1a2 100755 --- a/llvm/utils/GetRepositoryPath +++ b/llvm/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 |