From: Reid Spencer Date: Sun, 5 Sep 2004 20:57:22 +0000 (+0000) Subject: Remove double paren use in system() function so that the command line can X-Git-Tag: android-x86-6.0-r1~1003^2~52970 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=214c6d64b1d0c39cab5ead84b0f8600b00224d74;p=android-x86%2Fexternal-llvm.git Remove double paren use in system() function so that the command line can be correctly interpreted by non-bash shells. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16194 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 5be93b30bdb..8137d3ea529 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -340,8 +340,8 @@ $CVSOPT = ""; $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") ; }