diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-09-05 20:57:22 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-09-05 20:57:22 +0000 |
commit | d5de72cd6bef233b4723e99ad7776fdbf8235fc9 (patch) | |
tree | 1d71eb4da614fcf9f7268a451cbc0981f75f580a | |
parent | 075de23a3d96ee8be4037ce975b422ca63d636dc (diff) | |
download | bcm5719-llvm-d5de72cd6bef233b4723e99ad7776fdbf8235fc9.tar.gz bcm5719-llvm-d5de72cd6bef233b4723e99ad7776fdbf8235fc9.zip |
Remove double paren use in system() function so that the command line can
be correctly interpreted by non-bash shells.
llvm-svn: 16194
-rwxr-xr-x | llvm/utils/NightlyTest.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/NightlyTest.pl b/llvm/utils/NightlyTest.pl index 5be93b30bdb..8137d3ea529 100755 --- a/llvm/utils/NightlyTest.pl +++ b/llvm/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") ; } |