[llvm] r190685 - Fix build failure reported by Tobias Markmann in bug 17203.

Daniel Sanders daniel.sanders at imgtec.com
Fri Sep 13 05:41:39 PDT 2013


Author: dsanders
Date: Fri Sep 13 07:41:38 2013
New Revision: 190685

URL: http://llvm.org/viewvc/llvm-project?rev=190685&view=rev
Log:
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


Modified:
    llvm/trunk/utils/GetRepositoryPath

Modified: llvm/trunk/utils/GetRepositoryPath
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/GetRepositoryPath?rev=190685&r1=190684&r2=190685&view=diff
==============================================================================
--- llvm/trunk/utils/GetRepositoryPath (original)
+++ llvm/trunk/utils/GetRepositoryPath Fri Sep 13 07:41:38 2013
@@ -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





More information about the llvm-commits mailing list