[llvm-commits] [llvm-top] r40376 - /llvm-top/trunk/library.sh
Reid Spencer
rspencer at reidspencer.com
Sat Jul 21 10:34:47 PDT 2007
Author: reid
Date: Sat Jul 21 12:34:47 2007
New Revision: 40376
URL: http://llvm.org/viewvc/llvm-project?rev=40376&view=rev
Log:
Don't get llvm-gcc-4.0 from the apple repository any more.
Modified:
llvm-top/trunk/library.sh
Modified: llvm-top/trunk/library.sh
URL: http://llvm.org/viewvc/llvm-project/llvm-top/trunk/library.sh?rev=40376&r1=40375&r2=40376&view=diff
==============================================================================
--- llvm-top/trunk/library.sh (original)
+++ llvm-top/trunk/library.sh Sat Jul 21 12:34:47 2007
@@ -106,13 +106,8 @@
quiet="-q"
fi
msg 3 "Running svn checkout for '$module'"
- if test "$module" = "llvm-gcc-4.0" ; then
- $SVN checkout $quiet svn://anonsvn.opensource.apple.com/svn/llvm/trunk \
- $module || die $? "Checkout of module $module failed."
- else
- $SVN checkout $quiet $SVNROOT/$module/trunk $module || \
- die $? "Checkout of module '$module' failed."
- fi
+ $SVN checkout $quiet $SVNROOT/$module/trunk $module || \
+ die $? "Checkout of module '$module' failed."
return 0
}
More information about the llvm-commits
mailing list