mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-01 16:31:13 +00:00
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
This commit is contained in:
parent
77d9019789
commit
214c6d64b1
@ -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") ;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user