forked from OSchip/llvm-project
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
This commit is contained in:
parent
31d09b0cef
commit
eb03a37cfa
|
|
@ -15,7 +15,7 @@ fi
|
||||||
|
|
||||||
cd $1
|
cd $1
|
||||||
if [ -d .svn ]; then
|
if [ -d .svn ]; then
|
||||||
svn info | grep 'URL:' | cut -d: -f2-
|
svn info | grep '^URL:' | cut -d: -f2-
|
||||||
elif [ -f .git/svn/.metadata ]; then
|
elif [ -f .git/svn/.metadata ]; then
|
||||||
git svn info | grep 'URL:' | cut -d: -f2-
|
git svn info | grep 'URL:' | cut -d: -f2-
|
||||||
elif [ -d .git ]; then
|
elif [ -d .git ]; then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue