Changeset 2674

Show
Ignore:
Timestamp:
03/06/08 11:18:15 (9 months ago)
Author:
hans
Message:

Quote evaluated expression on the command line

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • buildbot/master/master.cfg

    r2673 r2674  
    4040from buildbot.process import factory 
    4141 
    42 compilers = {   "sbcl" : "sbcl --disable-debugger --no-sysinit --no-userinit --load %s --eval %s", 
    43                 "ccl" : "ccl -n -b -l %s -e %s", 
    44                 "cmucl" : "lisp -noinit -nositeinit -batch -load %s -e %s" } 
     42compilers = {   "sbcl" : "sbcl --disable-debugger --no-sysinit --no-userinit --load %s --eval '%s'", 
     43                "ccl" : "ccl -n -b -l %s -e '%s'", 
     44                "cmucl" : "lisp -noinit -nositeinit -batch -load %s -e '%s'" } 
    4545 
    4646def make_factory(branch, compiler):