1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Remove the last vestiges of -usesvn.

Implement -usecvs just in case we need to go back to cvs for some reason.

llvm-svn: 37837
This commit is contained in:
Reid Spencer 2007-07-02 06:19:57 +00:00
parent 796eb92698
commit d0ce01f3de

View File

@ -45,10 +45,8 @@ use Socket;
# -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 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
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]\'";