Skip to content

Commit

Permalink
Fix build failure reported by Tobias Markmann in bug 17203.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dsandersllvm committed Sep 13, 2013
1 parent 8312905 commit 9c38ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/GetRepositoryPath
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9c38ba4

Please sign in to comment.