X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=builder;fp=builder;h=89e328a628f45ea37cb9ab5b4091131ccf3e38da;hb=1fe5989217e61dbde51badf99a24c75d7f5455cb;hp=8c41b82c6467af9661b0e4358c76c9ee4273de16;hpb=79a20c50015feb249a164c0b5aaf120e14f64e21;p=moonshot.git diff --git a/builder b/builder index 8c41b82..89e328a 100755 --- a/builder +++ b/builder @@ -69,8 +69,11 @@ def command_output(args) : def build(package): with current_directory(package): run_cmd(('autoreconf', '-i', '-f')) - configure_command = ' '.join([schroot_command, + configure_command = ' '.join([ './configure'] + configure_opts) + if len(schroot_command) > 0: + configure_command = schroot_command + " -- " \ + + configure_command print configure_command sys.stdout.flush() run_cmd(configure_command, shell=True)