[llvm-commits] [llvm] r37837 - /llvm/trunk/utils/NewNightlyTest.pl

Reid Spencer reid at x10sys.com
Sun Jul 1 23:19:57 PDT 2007


Author: reid
Date: Mon Jul  2 01:19:57 2007
New Revision: 37837

URL: http://llvm.org/viewvc/llvm-project?rev=37837&view=rev
Log:
Remove the last vestiges of -usesvn.
Implement -usecvs just in case we need to go back to cvs for some reason.

Modified:
    llvm/trunk/utils/NewNightlyTest.pl

Modified: llvm/trunk/utils/NewNightlyTest.pl
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/NewNightlyTest.pl?rev=37837&r1=37836&r2=37837&view=diff
==============================================================================
--- llvm/trunk/utils/NewNightlyTest.pl (original)
+++ llvm/trunk/utils/NewNightlyTest.pl Mon Jul  2 01:19:57 2007
@@ -45,10 +45,8 @@
 #  -gccpath         Path to gcc/g++ used to build LLVM
 #  -cvstag          Check out a specific CVS tag to build LLVM (useful for
 #                   testing release branches)
-#  -usesvn          Check code out from a subversion repository.
-#  -svnurl          Specify the SVN URL where LLVM can be found. Needs -usesvn
-#                   to be useful. If -svnurl is not used but -usesvn is then
-#                   the standard (UIUC) repository will be used. 
+#  -usecvs          Check code out from the (old) CVS Repository instead of from
+#                   the standard Subversion repository.
 #  -target          Specify the target triplet
 #  -cflags          Next argument specifies that C compilation options that
 #                   override the default.
@@ -170,7 +168,7 @@
   else                     { $GCCPATH=""; }
   if (/^-cvstag/)          { $CVSCOOPT .= " -r $ARGV[0]"; shift; next; } 
   else                     { $CVSCOOPT="";}
-  if (/^-svnurl/)          { $SVNURL = $ARGV[0]; shift; next; }
+  if (/^-usecvs/)          { $USESVN = 0; }
   if (/^-target/)          { $CONFIGUREARGS .= " --target=$ARGV[0]"; 
                              shift; next; }
   if (/^-cflags/)          { $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'"; 





More information about the llvm-commits mailing list