[llvm-commits] CVS: llvm/utils/NightlyTest.pl

Reid Spencer reid at x10sys.com
Sun Sep 5 13:57:33 PDT 2004



Changes in directory llvm/utils:

NightlyTest.pl updated: 1.64 -> 1.65
---
Log message:

Remove double paren use in system() function so that the command line can
be correctly interpreted by non-bash shells.


---
Diffs of the changes:  (+2 -2)

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.64 llvm/utils/NightlyTest.pl:1.65
--- llvm/utils/NightlyTest.pl:1.64	Sun Sep  5 02:58:10 2004
+++ llvm/utils/NightlyTest.pl	Sun Sep  5 15:57:22 2004
@@ -340,8 +340,8 @@
 $CVSOPT = "-z3" if $CVSRootDir =~ /^:ext:/; # Use compression if going over ssh.
 if (!$NOCHECKOUT) {
   if ( $VERBOSE ) { print "CHECKOUT STAGE\n"; }
-  system "(time -p ($NICE cvs $CVSOPT -d $CVSRootDir co -APR llvm; cd llvm/projects ; " .
-     "$NICE cvs $CVSOPT -d $CVSRootDir co -APR llvm-test ) ) > $CVSLog 2>&1";
+  system "( time -p $NICE cvs $CVSOPT -d $CVSRootDir co -APR llvm; cd llvm/projects ; " .
+     "$NICE cvs $CVSOPT -d $CVSRootDir co -APR llvm-test ) > $CVSLog 2>&1";
   ChangeDir( $BuildDir , "CVS Checkout directory") ;
 }
 






More information about the llvm-commits mailing list